/********** Template CSS **********/
:root {
    --primary: #8B1538; /* Burgundy/Maroon from logo */
    --secondary: #D4AF37; /* Gold accent for better contrast */
    --light: #F6F4F9;
    --dark: #2C2C2C; /* Dark charcoal from logo */
    --accent: #6B1426; /* Darker burgundy for depth */
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
    margin-bottom: 30px;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Hero header navbar styling */
.hero-header .navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

    .hero-header .navbar-light .navbar-nav .nav-link:hover,
    .hero-header .navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
    }

.hero-header .navbar-light .navbar-brand h1 {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

        .sticky-top.navbar-light .navbar-brand h1 {
            color: var(--primary);
        }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    padding: 18rem 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85), rgba(107, 20, 38, 0.9)), url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png), url(../img/bg-bottom.png);
    background-position: center center, left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center, center bottom;
    background-repeat: no-repeat;
    background-size: cover, contain, contain, contain, contain, contain, contain;
    background-color: var(--primary);
    position: relative;
}

    .hero-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
    }

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
}

    .section-title span:first-child,
    .section-title span:last-child {
        position: relative;
        display: inline-block;
        margin-right: 30px;
        width: 30px;
        height: 2px;
    }

    .section-title span:last-child {
        margin-right: 0;
        margin-left: 30px;
    }

        .section-title span:first-child::after,
        .section-title span:last-child::after {
            position: absolute;
            content: "";
            width: 15px;
            height: 2px;
            top: 0;
            right: -20px;
        }

        .section-title span:last-child::after {
            right: auto;
            left: -20px;
        }

    .section-title.text-primary span:first-child,
    .section-title.text-primary span:last-child,
    .section-title.text-primary span:first-child::after,
    .section-title.text-primary span:last-child::after {
        background: var(--primary);
    }

    .section-title.text-secondary span:first-child,
    .section-title.text-secondary span:last-child,
    .section-title.text-secondary span:first-child::after,
    .section-title.text-secondary span:last-child::after {
        background: var(--secondary);
    }

    .section-title.text-white span:first-child,
    .section-title.text-white span:last-child,
    .section-title.text-white span:first-child::after,
    .section-title.text-white span:last-child::after {
        background: #FFFFFF;
    }

/* Footer specific section titles */
.footer .section-title {
    font-size: 1.1rem !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

    .footer .section-title span:first-child,
    .footer .section-title span:last-child {
        width: 20px;
        height: 2px;
        background: #FFFFFF;
        margin-right: 15px;
    }

    .footer .section-title span:last-child {
        margin-right: 0;
        margin-left: 15px;
    }

    /* Footer section titles - comprehensive fix */
    .footer .section-title,
    .footer .section-title.text-white,
    .footer p.section-title,
    .footer h5.section-title,
    .footer .section-title.h5 {
        font-size: 1.1rem !important;
        color: #FFFFFF !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem !important;
        display: block !important;
        text-align: left !important;
    }

        /* Override any conflicting styles */
        .footer .section-title * {
            color: #FFFFFF !important;
        }

        /* Ensure the decorative lines are visible */
        .footer .section-title span {
            background: #FFFFFF !important;
        }

/* If using different HTML structure */
.footer [class*="section-title"],
.footer [class*="title"] {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .feature-item:hover {
        margin-top: -15px;
        box-shadow: 0 15px 35px rgba(139, 21, 56, 0.15);
        border-color: var(--primary);
    }

    .feature-item i {
        color: var(--primary) !important;
    }

    .feature-item h5 {
        color: var(--text-primary) !important;
        font-weight: 600;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-item p {
        color: var(--text-secondary) !important;
        line-height: 1.6;
        font-size: 0.95rem;
    }


/*** About ***/
.progress {
    height: 5px;
}

    .progress .progress-bar {
        width: 0px;
        transition: 3s;
    }


/*** Fact ***/
.fact {
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    overflow: hidden;
    transition: .5s;
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .service-item:hover {
        margin-top: -15px;
        padding-bottom: 60px;
        background: var(--primary);
        box-shadow: 0 15px 35px rgba(139, 21, 56, 0.2);
        border-color: var(--primary);
    }

    .service-item .service-icon {
        margin: 0 auto 20px auto;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(139, 21, 56, 0.05));
        border-radius: 20px;
        transition: .5s;
        border: 2px solid rgba(139, 21, 56, 0.1);
    }

    .service-item:hover .service-icon {
        color: var(--secondary);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
        border-color: var(--secondary);
        transform: scale(1.1);
    }

    .service-item h5 {
        transition: .5s;
        color: var(--text-primary) !important;
        font-weight: 600 !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
        line-height: 1.3;
    }

    .service-item p {
        transition: .5s;
        color: var(--text-secondary) !important;
        line-height: 1.6 !important;
        font-size: 0.95rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }

    .service-item:hover h5 {
        color: #FFFFFF !important;
    }

    .service-item:hover p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .service-item a.btn {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--primary);
        background: #FFFFFF;
        border-radius: 40px 40px 0 0;
        transition: .5s;
        z-index: 1;
        border: 2px solid var(--primary);
        font-weight: 500;
    }

        .service-item a.btn:hover {
            color: #FFFFFF;
            background: var(--secondary);
            border-color: var(--secondary);
        }

    .service-item:hover a.btn {
        bottom: 0;
    }

    /* Ensure service titles are visible */
    .service-item h5,
    .service-item .h5,
    .service-item h4,
    .service-item .h4 {
        color: var(--text-primary) !important;
        font-weight: 600 !important;
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        display: block !important;
        visibility: visible !important;
    }

    .service-item:hover h5,
    .service-item:hover .h5,
    .service-item:hover h4,
    .service-item:hover .h4 {
        color: #FFFFFF !important;
    }


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

    #portfolio-flters li:hover,
    #portfolio-flters li.active {
        color: var(--primary);
        border-color: var(--primary);
    }

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(139, 21, 56, .9); /* Updated to use burgundy color */
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background: url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: var(--light);
        border-radius: 60px;
        font-size: 22px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            color: #FFFFFF;
            background: var(--primary);
            box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        }


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

    .team-item .btn:hover {
        color: #FFFFFF;
        background: var(--primary);
    }


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85), rgba(107, 20, 38, 0.9)), url(../img/bg-top.png), url(../img/map.png);
    background-position: center center, center top, center center;
    background-repeat: no-repeat;
    background-size: cover, contain, cover;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

    /* Remove the duplicate overlay effects */

    /* Ensure footer content appears above overlays */
    .footer .container {
        position: relative;
        z-index: 2;
    }

    .footer .section-title {
        font-size: 16px;
        color: #FFFFFF !important;
    }

    .footer h5,
    .footer p,
    .footer a,
    .footer .btn.btn-link {
        color: #FFFFFF !important;
    }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 10px;
        padding: 0;
        text-align: left;
        color: #FFFFFF !important;
        font-weight: normal;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            letter-spacing: 1px;
            box-shadow: none;
            color: var(--secondary) !important;
        }

    .footer .copyright {
        padding: 25px 0;
        font-size: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF !important;
    }

        .footer .copyright a {
            color: #FFFFFF !important;
        }

            .footer .copyright a:hover,
            .footer .footer-menu a:hover {
                color: var(--secondary) !important;
            }

    .footer .footer-menu a {
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

        .footer .footer-menu a:last-child {
            margin-right: 0;
            padding-right: 0;
            border-right: none;
        }

    .footer .section-title {
        font-size: 16px;
        color: var(--primary) !important;
    }

    .footer h5,
    .footer p,
    .footer a,
    .footer .btn.btn-link {
        color: var(--text-primary) !important;
    }

        .footer .btn.btn-link:hover {
            color: var(--primary) !important;
        }

    .footer .copyright {
        padding: 25px 0;
        font-size: 14px;
        border-top: 1px solid rgba(139, 21, 56, 0.1);
        color: var(--text-secondary) !important;
    }

        .footer .copyright a {
            color: var(--primary) !important;
        }

            .footer .copyright a:hover,
            .footer .footer-menu a:hover {
                color: var(--secondary) !important;
            }

    h5, .footer p, .footer a {
        color: #FFFFFF !important;
    }

    .footer .btn.btn-social {
        margin-right: 5px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 40px;
        transition: .3s;
    }

        .footer .btn.btn-social:hover {
            color: var(--primary);
            background: #FFFFFF;
            border-color: #FFFFFF;
        }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 10px;
        padding: 0;
        text-align: left;
        color: var(--light);
        font-weight: normal;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            letter-spacing: 1px;
            box-shadow: none;
            color: var(--secondary);
        }

    .footer .copyright {
        padding: 25px 0;
        font-size: 14px;
        border-top: 1px solid rgba(256, 256, 256, .1);
    }

        .footer .copyright a {
            color: var(--light);
        }

    .footer .footer-menu a {
        margin-right: 15px;
        padding-right: 15px;
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

        .footer .footer-menu a:last-child {
            margin-right: 0;
            padding-right: 0;
            border-right: none;
        }

/*** Professional Brand Enhancements ***/

/* Brand-aligned button styles */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

    .btn-primary:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #FFFFFF;
    }

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

    .btn-secondary:hover {
        background: #B8941F;
        border-color: #B8941F;
        color: var(--dark);
    }

/* Enhanced text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

/* Improved paragraph typography */
p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Enhanced contrast for better readability */
.bg-light .feature-item h5,
.bg-light h5 {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.bg-light .feature-item p,
.bg-light p {
    color: var(--text-secondary) !important;
}

/* Stats/Facts section enhancement */
.fact {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9), rgba(107, 20, 38, 0.95)), url(../img/blob-top-left.png), url(../img/blob-top-right.png), url(../img/blob-bottom-left.png), url(../img/blob-bottom-right.png), url(../img/blob-center.png);
    background-position: center center, left 0px top 0px, right 0px top 0px, left 0px bottom 0px, right 0px bottom 0px, center center;
    background-repeat: no-repeat;
    background-size: cover, contain, contain, contain, contain, contain;
    position: relative;
    overflow: hidden;
}

    .fact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .fact .row {
        position: relative;
        z-index: 1;
    }

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/*** Professional Brand Enhancements ***/

/* Brand-aligned button styles */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

    .btn-primary:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #FFFFFF;
    }

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

    .btn-secondary:hover {
        background: #B8941F;
        border-color: #B8941F;
        color: var(--dark);
    }

/* Enhanced text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

/* Stats/Facts section enhancement */
.fact {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Professional card styling */
.card {
    border: 1px solid rgba(139, 21, 56, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .card:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
    }

/*** Professional Brand Enhancements ***/

/* Hero section text styling */
.hero-header h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 700;
}

.hero-header p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Button styling in hero */
.hero-header .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero-header .btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

    .hero-header .btn-secondary:hover {
        background: #B8941F;
        border-color: #B8941F;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

.hero-header .btn-light {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

    .hero-header .btn-light:hover {
        background: #FFFFFF;
        border-color: #FFFFFF;
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    }

/* Professional spacing and typography */
.section-title {
    margin-bottom: 3rem;
}

.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

/* Enhanced readability */
p {
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Professional hover effects */
.feature-item:hover,
.service-item:hover {
    transform: translateY(-5px);
}

/* Brand-consistent focus states */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
    border-color: var(--primary);
}
