/* Global Styles */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
    p { font-size: 1rem !important; }
}

/* Container Padding for Mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Logo Animation */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    animation: fadeInDown 1s ease-out;
}

.logo-subtext {
    font-size: 1rem;
    color: var(--light-color);
    animation: fadeInUp 1s ease-out;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 50px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0 30px;
    }
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 15px;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Featured Work Section */
.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.work-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    bottom: 0;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-content {
    position: relative;
    padding-left: 2rem;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

/* Contact Form Responsive Styles */
.contact-form {
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Map Container Responsive */
.map-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Contact Widgets */
.contact-widgets {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-widgets {
        right: 10px;
        bottom: 10px;
    }
}

.widget-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    @media (min-width: 769px) {
        width: 60px;
        height: 60px;
    }
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.phone-widget {
    background-color: #28a745;
}

.whatsapp-widget {
    background-color: #25d366;
}

.widget-button:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .service-card,
    .work-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }

    .contact-widgets {
        right: 10px;
        bottom: 10px;
    }

    .widget-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-7, .hero-section .col-md-5 {
    position: relative;
    z-index: 2;
}
.btn, .btn-primary, .btn-lg {
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    color: #fff !important;
}
.btn-brand {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(211,47,47,0.15);
}
.btn-brand:hover, .btn-brand:focus {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Accent bar for hero */
.hero-accent {
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 3px;
}
/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container, .hero-section