/********** Template CSS **********/
:root {
    /* Black, Gold & White Color Scheme */
    --primary: #D4AF37; /* Gold - prestige, wealth, quality */
    --secondary: #000000; /* Black - strength, elegance, luxury */
    --dark: #000000; /* Black */
    --light: #FFFFFF; /* Pure White */
    
    /* Bootstrap Color Overrides */
    --bs-primary: #D4AF37; /* Gold */
    --bs-primary-rgb: 212, 175, 55;
    --bs-secondary: #000000; /* Black */
    --bs-secondary-rgb: 0, 0, 0;
    --bs-dark: #000000; /* Black */
    --bs-dark-rgb: 0, 0, 0;
    --bs-light: #FFFFFF; /* White */
    --bs-light-rgb: 255, 255, 255;
    --bs-white: #FFFFFF;
    --bs-white-rgb: 255, 255, 255;
}

/* Remove default margins and padding */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Accessibility - Screen Reader Only Elements */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
    position: fixed !important;
    top: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: auto !important;
    padding: 1rem 2rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    z-index: 10000 !important;
    background: #D4AF37 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure topbar has no top margin */
.container-fluid.bg-dark {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

/*** Color Utility Overrides ***/
.bg-primary {
    background-color: #D4AF37 !important;
}

.bg-dark {
    background-color: #000000 !important;
}

.bg-light {
    background-color: #FFFFFF !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.text-primary {
    color: #D4AF37 !important;
}

.text-dark {
    color: #000000 !important;
}

.text-light {
    color: #FFFFFF !important;
}

.text-white {
    color: #FFFFFF !important;
}

.btn-primary {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #000000 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #000000 !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

.btn-secondary {
    background-color: #000000 !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #D4AF37 !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

.border-primary {
    border-color: #D4AF37 !important;
}

.border-dark {
    border-color: #000000 !important;
}

.border-light,
.border-white {
    border-color: #FFFFFF !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #D4AF37;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000000;
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--primary);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** 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: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--primary);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    display: inline-block;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social,
.footer .btn-outline-light.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    transition: .3s;
}

.footer .btn.btn-social i,
.footer .btn-outline-light.btn-social i {
    display: inline-block !important;
    font-size: 16px !important;
    line-height: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.footer .btn-outline-light i {
    display: inline-block !important;
    font-size: 16px;
    line-height: 1;
}

.footer .btn.btn-social:hover {
    color: #FFFFFF;
    background: #D4AF37;
    border-color: #D4AF37;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: none;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    display: none;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 0;
    box-shadow: none;
    text-decoration: none;
}

/* Footer Language Switcher */
.footer .footer-lang-switcher {
    padding: 0;
    margin-bottom: 5px;
    display: block;
    text-align: left;
    color: #FFFFFF;
    text-decoration: none;
}

.footer .footer-lang-switcher i {
    color: #D4AF37;
    font-size: 16px;
}

.footer .footer-lang-switcher:hover {
    color: #D4AF37 !important;
    letter-spacing: 0;
    text-decoration: none;
}

#current-lang-footer {
    color: #D4AF37;
    font-weight: 700;
    font-size: 16px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    display: none !important;
    right: 45px !important;
    bottom: 45px !important;
    z-index: 9999 !important;
    outline: none !important;
    background: #D4AF37 !important;
    width: 38px !important;
    height: 38px !important;
    text-align: center !important;
    line-height: 38px !important;
    font-size: 15px !important;
    color: #000000 !important;
    transition: all 0.3s !important;
    border: none !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Show back to top button when visible */
.back-to-top.show {
    display: block !important;
}

/* Force visibility - override any conflicting styles */
a.back-to-top,
.back-to-top,
body .back-to-top {
    position: fixed !important;
    right: 45px !important;
    bottom: 45px !important;
    z-index: 9999 !important;
    background: #D4AF37 !important;
    width: 38px !important;
    height: 38px !important;
    text-align: center !important;
    line-height: 38px !important;
    font-size: 15px !important;
    color: #000000 !important;
    border: none !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.back-to-top:hover {
    background: #000000 !important;
    color: #D4AF37 !important;
    text-decoration: none !important;
}

.back-to-top i {
    font-size: 15px !important;
    line-height: 38px !important;
    display: inline-block !important;
}

/* Footer Override - Force Clean Template Style */
.footer .btn.btn-link {
    display: block !important;
    margin-bottom: 5px !important;
    padding: 0 !important;
    text-align: left !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: normal !important;
    text-transform: none !important;
    transition: color 0.3s !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

.footer .btn.btn-link::before {
    display: none !important;
    content: none !important;
}

.footer .btn.btn-link::after {
    display: none !important;
    content: none !important;
}

.footer .btn.btn-link:hover {
    color: #D4AF37 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer .btn.btn-link:hover::before {
    display: none !important;
}

.footer .btn.btn-link:hover::after {
    display: none !important;
}

/* Footer Language Switcher Override */
.footer .footer-lang-switcher {
    padding: 0 !important;
    margin-bottom: 5px !important;
    display: block !important;
    text-align: left !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
    font-size: 15px !important;
    font-weight: normal !important;
}

.footer .footer-lang-switcher::before {
    display: none !important;
    content: none !important;
}

.footer .footer-lang-switcher::after {
    display: none !important;
    content: none !important;
}

.footer .footer-lang-switcher:hover {
    color: #D4AF37 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer .footer-lang-switcher:hover::before {
    display: none !important;
}

.footer .footer-lang-switcher:hover::after {
    display: none !important;
}

/* Override any general btn-link styles in footer */
.footer .btn-link {
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 0 !important;
    position: relative !important;
    display: block !important;
    transition: color 0.3s !important;
}

.footer .btn-link:hover {
    color: #D4AF37 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-decoration: none !important;
}

.footer .btn-link::before {
    display: none !important;
    content: none !important;
}

.footer .btn-link::after {
    display: none !important;
    content: none !important;
}

.footer .btn-link:hover::before {
    display: none !important;
}

.footer .btn-link:hover::after {
    display: none !important;
}


/*** Additional Black, Gold & White Theme Enhancements ***/
body {
    color: #000000;
}

a {
    color: #D4AF37;
    transition: .3s;
}

a:hover {
    color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

/* Navbar Enhancement */
.navbar-light {
    background-color: #FFFFFF !important;
}

.navbar-light .navbar-brand h2 {
    color: #D4AF37 !important;
}

/* Language Switcher - Mobile */
#language-switcher-mobile {
    padding: 10px 0 !important;
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: none !important;
}

#language-switcher-mobile:hover {
    color: #D4AF37 !important;
}

#language-switcher-mobile i {
    font-size: 1rem;
    color: #D4AF37;
}

#current-lang-mobile {
    font-weight: 700;
    color: #D4AF37;
}

@media (max-width: 991.98px) {
    #language-switcher-mobile {
        padding: 10px 0 !important;
    }
}

/* Navbar Quote Button */
.navbar .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.navbar .btn-primary span {
    display: inline-block;
}

.navbar .btn-primary i {
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid #D4AF37;
}

.dropdown-item {
    color: #000000;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #D4AF37;
    color: #000000;
}

/* Form Controls */
.form-control,
.form-select {
    border-color: #D4AF37;
    color: #000000;
}

.form-control:focus,
.form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Quote Form Styling */
.quote-form .quote-input {
    border: 2px solid #D4AF37 !important;
    background-color: #FFFFFF;
    color: #000000;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.quote-form .quote-input:focus {
    border-color: #000000 !important;
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    outline: none;
}

.quote-form .quote-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.quote-form select.quote-input {
    cursor: pointer;
}

.quote-form select.quote-input option {
    color: #000000;
    background-color: #FFFFFF;
    padding: 10px;
}

.quote-form select.quote-input option:hover {
    background-color: #D4AF37;
}

.quote-form .btn-primary {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quote-form .btn-primary:hover {
    background-color: #000000;
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.quote-form .btn-primary i {
    transition: transform 0.3s ease;
}

.quote-form .btn-primary:hover i {
    transform: translateX(5px);
}

/* Card Enhancements */
.card {
    border-color: #D4AF37;
}

.card-header {
    background-color: #000000;
    color: #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

/* Back to Top Button */
.back-to-top {
    background-color: #D4AF37;
    color: #000000;
}

.back-to-top:hover {
    background-color: #000000;
    color: #D4AF37;
}

/* Breadcrumb */
.breadcrumb-item.active {
    color: #D4AF37;
}

/* Alert Overrides */
.alert-primary {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000000;
}

.alert-dark {
    background-color: #000000;
    border-color: #000000;
    color: #D4AF37;
}

/* ==========================================
   ICON VISIBILITY - CRITICAL FIXES
   ========================================== */

/* Ensure all Font Awesome icons are visible */
.fa,
.fas,
.far,
.fab,
i.fa,
i.fas,
i.far,
i.fab {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Specific footer icons - force visibility */
.footer .fa-map-marker-alt,
.footer .fa-phone-alt,
.footer .fa-envelope,
.footer .fa-globe,
.footer .fa-twitter,
.footer .fa-facebook-f,
.footer .fa-youtube,
.footer .fa-linkedin-in {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Footer contact info icons */
.footer .fa-map-marker-alt::before,
.footer .fa-phone-alt::before,
.footer .fa-envelope::before {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Language switcher icons */
.footer .footer-lang-switcher i.fa-globe {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* ==========================================
   PROFESSIONAL BLOG STYLES - ENHANCED
   ========================================== */

/* Blog Page Header - Professional */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(212, 175, 55, 0.1)), url('../img/carousel-1.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(212, 175, 55, 0.05));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.page-header .breadcrumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: "›";
    font-size: 1.2rem;
    font-weight: 300;
}

.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-header .breadcrumb-item a:hover {
    color: #D4AF37;
}

.page-header .breadcrumb-item.active {
    color: #D4AF37;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Professional Blog Item Design */
.blog-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #000, #D4AF37);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.blog-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-item .bg-primary {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 280px;
}

.blog-item .bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-item:hover .bg-primary::before {
    opacity: 1;
}

.blog-item .bg-primary img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.05);
}

.blog-item:hover .bg-primary img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.blog-item .p-4 {
    padding: 2.5rem !important;
    position: relative;
}

.blog-item .p-4::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.blog-item h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #000;
    line-height: 1.4;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.blog-item:hover h4 {
    color: #D4AF37;
    transform: translateY(-2px);
}

.blog-item p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.blog-item .d-flex.mb-3 {
    margin-bottom: 1.75rem !important;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-item .d-flex.mb-3 small {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-item .d-flex.mb-3 small i {
    color: #D4AF37;
    margin-right: 0.6rem;
    font-size: 1rem;
}

.blog-item a.text-uppercase {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.blog-item a.text-uppercase:hover {
    background: linear-gradient(135deg, #000, #333);
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.blog-item a.text-uppercase i {
    margin-left: 0.6rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.blog-item a.text-uppercase:hover i {
    transform: translateX(4px);
}

/* Professional Sidebar Design */
.bg-light {
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #000, #D4AF37);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

.bg-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.bg-light h4 {
    color: #000;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-transform: uppercase;
}

.bg-light h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #000);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Professional Search Form */
.position-relative input {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 1rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.02em;
}

.position-relative input:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.15);
    outline: none;
    background: #fff;
    transform: scale(1.02);
}

.position-relative input::placeholder {
    color: #666;
    font-weight: 400;
    opacity: 1;
}

.position-relative button {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.position-relative button:hover {
    background: linear-gradient(135deg, #000, #333) !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.position-relative button i {
    color: #000;
    transition: color 0.3s ease;
}

.position-relative button:hover i {
    color: #D4AF37;
}

/* Professional Recent Posts */
.d-flex.mb-3 {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.25rem;
    border-radius: 15px;
    margin-bottom: 1.25rem !important;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.d-flex.mb-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.d-flex.mb-3:hover::before {
    left: 100%;
}

.d-flex.mb-3:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
}

.d-flex.mb-3 img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1.05);
}

.d-flex.mb-3:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
}

.d-flex.mb-3 a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.d-flex.mb-3:hover a {
    color: #D4AF37;
    transform: translateY(-1px);
}

.d-flex.mb-3 .small {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.d-flex.mb-3 .flex-grow-1 {
    flex: 1;
    min-width: 0;
}

/* Professional Categories */
.category-link {
    color: #000;
    text-decoration: none;
    padding: 0.75rem 0 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #000);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-link:hover {
    color: #D4AF37;
    padding-left: 0.5rem !important;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.category-link:hover::before {
    width: 100%;
}

.category-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-link:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #D4AF37 !important;
}

.category-link .badge {
    transition: all 0.3s ease;
}

.category-link:hover .badge {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Old btn-link styles for compatibility */
.btn-link {
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.btn-link:hover {
    color: #D4AF37;
    padding-left: 0;
    text-decoration: none;
}

.btn-link::before {
    display: none;
}

.btn-link:hover::before {
    display: none;
}

/* Tag Buttons */
.btn-light {
    background: #fff;
    border: 1px solid #e9ecef;
    color: #6c757d;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Pagination */
.pagination .page-link {
    color: #000;
    border: 1px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
}

/* Professional Blog Details */
.blog-item h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.blog-item h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #000);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.blog-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.blog-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #000);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.blog-item ul {
    padding-left: 1.5rem;
}

.blog-item ul li {
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.7;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Author Section */
.d-flex.align-items-center.mb-3 {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.d-flex.align-items-center.mb-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #000, #D4AF37);
    background-size: 200% 100%;
    animation: shimmer 5s ease-in-out infinite;
}

.d-flex.align-items-center.mb-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.d-flex.align-items-center.mb-3 img {
    border: 4px solid #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.d-flex.align-items-center.mb-3:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* Professional Comments Section */
.d-flex.mb-4 {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 2rem !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.d-flex.mb-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #000);
    border-radius: 15px 15px 0 0;
}

.d-flex.mb-4:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.d-flex.mb-4 img {
    border: 3px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.d-flex.mb-4:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Professional Comment Form */
form .form-control {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    font-weight: 500;
    font-size: 1rem;
    color: #000;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.15);
    outline: none;
    background: #fff;
    transform: scale(1.02);
}

form .form-control::placeholder {
    color: #999;
    font-weight: 400;
    opacity: 1;
}

form .btn-primary {
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    border: none;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

form .btn-primary:hover::before {
    left: 100%;
}

form .btn-primary:hover {
    background: linear-gradient(135deg, #000, #333);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Professional Badges */
.badge {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #D4AF37, #b8941f);
    color: #000;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #000, #333);
    color: #D4AF37;
}

/* ==========================================
   RESPONSIVE BLOG STYLES
   ========================================== */

/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    /* Blog Page Header */
    .page-header {
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
        font-weight: 800;
    }
    
    .page-header .breadcrumb {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    /* Blog Container */
    .container-fluid.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Blog Items */
    .blog-item .p-4 {
        padding: 1.5rem !important;
    }
    
    .blog-item h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .blog-item .bg-primary {
        height: 220px;
        border-radius: 15px 15px 0 0;
    }
    
    .blog-item p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Blog Meta Info */
    .blog-item .d-flex.mb-3 {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem !important;
    }
    
    .blog-item .d-flex.mb-3 small {
        font-size: 0.8rem;
    }
    
    /* Sidebar */
    .col-lg-4 {
        margin-top: 2rem;
    }
    
    .bg-light {
        margin-bottom: 1.5rem;
        padding: 1.5rem !important;
    }
    
    .bg-light h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    /* Search Form */
    .position-relative input {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .position-relative button {
        width: 35px;
        height: 35px;
    }
    
    /* Recent Posts */
    .d-flex.mb-3 {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .d-flex.mb-3 img {
        width: 100% !important;
        height: 120px !important;
        margin-bottom: 0.75rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .d-flex.mb-3 a {
        font-size: 0.9rem;
    }
    
    /* Categories and Tags */
    .btn-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .btn-light {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        margin: 0.25rem;
    }
    
    /* Pagination */
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Blog Details Specific */
    .blog-item h1 {
        font-size: 2rem;
        line-height: 1.3;
        font-weight: 800;
    }
    
    .blog-item h4 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        font-weight: 700;
    }
    
    .blog-item ul {
        padding-left: 1rem;
    }
    
    .blog-item ul li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    /* Author Section */
    .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .d-flex.align-items-center.mb-3 img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
    
    /* Comments */
    .d-flex.mb-4 {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .d-flex.mb-4 img {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
    
    /* Comment Form */
    form .form-control {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    form .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        border-radius: 25px;
        font-weight: 700;
    }
    
    /* Badges */
    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        margin: 0.25rem;
        border-radius: 15px;
        font-weight: 600;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Blog Items */
    .blog-item h4 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .blog-item .bg-primary {
        height: 240px;
    }
    
    /* Sidebar */
    .col-lg-4 {
        margin-top: 2rem;
    }
    
    /* Recent Posts */
    .d-flex.mb-3 img {
        width: 90px !important;
        height: 70px !important;
    }
    
    /* Blog Details */
    .blog-item h1 {
        font-size: 2.25rem;
        font-weight: 800;
    }
    
    .blog-item h4 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    /* Author Section */
    .d-flex.align-items-center.mb-3 {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .d-flex.align-items-center.mb-3 img {
        width: 80px;
        height: 80px;
        margin-right: 1rem;
        margin-bottom: 0;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
    
    /* Comments */
    .d-flex.mb-4 {
        flex-direction: row;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .d-flex.mb-4 img {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
        margin-bottom: 0;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Blog Items */
    .blog-item .bg-primary {
        height: 260px;
    }
    
    /* Sidebar */
    .col-lg-4 {
        margin-top: 2rem;
    }
    
    /* Recent Posts */
    .d-flex.mb-3 img {
        width: 80px !important;
        height: 60px !important;
    }
    
    /* Blog Details */
    .blog-item h1 {
        font-size: 2.5rem;
        font-weight: 800;
    }
    
    /* Author Section */
    .d-flex.align-items-center.mb-3 img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
    
    /* Comments */
    .d-flex.mb-4 img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid #D4AF37;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    /* Blog Items */
    .blog-item .bg-primary {
        height: 280px;
    }
    
    /* Recent Posts */
    .d-flex.mb-3 img {
        width: 80px !important;
        height: 60px !important;
    }
    
    /* Blog Details */
    .blog-item h1 {
        font-size: 3rem;
        font-weight: 800;
    }
    
    /* Author Section */
    .d-flex.align-items-center.mb-3 img {
        width: 80px;
        height: 80px;
    }
    
    /* Comments */
    .d-flex.mb-4 img {
        width: 60px;
        height: 60px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Blog Items */
    .blog-item .bg-primary {
        height: 300px;
    }
    
    /* Blog Details */
    .blog-item h1 {
        font-size: 3.5rem;
        font-weight: 800;
    }
    
    .blog-item h4 {
        font-size: 1.75rem;
        font-weight: 700;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
        font-weight: 800;
    }
    
    .blog-item .bg-primary {
        height: 180px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-item .bg-primary img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        filter: brightness(1) contrast(1.05);
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .pagination {
        display: none !important;
    }
    
    .blog-item {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .blog-item h1,
    .blog-item h4 {
        color: #000 !important;
    }
    
    .blog-item .bg-primary {
        background: #fff !important;
    }
    
    .bg-light {
        background: #fff !important;
        border: 1px solid #000 !important;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .blog-item,
    .bg-light,
    .btn,
    .d-flex.mb-3,
    .d-flex.mb-4,
    .pagination .page-link,
    .badge {
        transition: none !important;
        animation: none !important;
    }
    
    .blog-item:hover {
        transform: none !important;
    }
    
    .blog-item:hover .bg-primary img {
        transform: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #2d3748 !important;
        border-color: #4a5568 !important;
        color: #e2e8f0 !important;
    }
    
    .bg-light h4 {
        color: #e2e8f0 !important;
    }
    
    .blog-item {
        background-color: #2d3748 !important;
        border-color: #4a5568 !important;
        color: #e2e8f0 !important;
    }
    
    .blog-item h4,
    .blog-item h1 {
        color: #e2e8f0 !important;
    }
    
    .blog-item p {
        color: #cbd5e0 !important;
    }
}

/* Social media icons - critical fixes */
.footer .btn-outline-light.btn-social i.fab,
.footer .btn-outline-light.btn-social i.fa-twitter,
.footer .btn-outline-light.btn-social i.fa-facebook-f,
.footer .btn-outline-light.btn-social i.fa-youtube,
.footer .btn-outline-light.btn-social i.fa-linkedin-in {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

/* Social media button containers */
.footer .btn-outline-light.btn-social {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
}

/* Font Awesome Brands specific */
.fab {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Clean Social Media Icon Fixes */
.footer .btn-outline-light.btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    border: 1px solid #D4AF37;
    background: transparent;
    transition: all 0.3s;
}

.footer .btn-outline-light.btn-social:hover {
    background: #D4AF37;
    color: #000000;
}

.footer .btn-outline-light.btn-social i.fab {
    display: inline-block;
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 16px;
    color: #D4AF37;
    line-height: 1;
    text-align: center;
}

/* Explicit icon content for social media */
.footer .fa-twitter::before { content: "\f099"; }
.footer .fa-facebook-f::before { content: "\f39e"; }
.footer .fa-youtube::before { content: "\f167"; }
.footer .fa-linkedin-in::before { content: "\f0e1"; }

/* Topbar Social Media Icons - FORCE DISPLAY */
.container-fluid.bg-dark .btn-sm-square.bg-primary,
.bg-dark .btn-sm-square.bg-primary {
    width: 35px !important;
    height: 35px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
    transition: all 0.3s !important;
    background-color: #D4AF37 !important;
    border: none !important;
    padding: 0 !important;
    margin-right: 4px !important;
}

.container-fluid.bg-dark .btn-sm-square.bg-primary i.fab,
.bg-dark .btn-sm-square.bg-primary i.fab {
    display: inline-block !important;
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #000000 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
}

.container-fluid.bg-dark .btn-sm-square.bg-primary:hover,
.bg-dark .btn-sm-square.bg-primary:hover {
    background: #000000 !important;
    color: #D4AF37 !important;
}

.container-fluid.bg-dark .btn-sm-square.bg-primary:hover i.fab,
.bg-dark .btn-sm-square.bg-primary:hover i.fab {
    color: #D4AF37 !important;
}

/* FORCE icon content for topbar social media */
.container-fluid.bg-dark .fa-facebook-f::before,
.bg-dark .fa-facebook-f::before { content: "\f39e" !important; }
.container-fluid.bg-dark .fa-twitter::before,
.bg-dark .fa-twitter::before { content: "\f099" !important; }
.container-fluid.bg-dark .fa-linkedin-in::before,
.bg-dark .fa-linkedin-in::before { content: "\f0e1" !important; }
.container-fluid.bg-dark .fa-instagram::before,
.bg-dark .fa-instagram::before { content: "\f16d" !important; }

/* Additional fallback for Font Awesome icons */
.container-fluid.bg-dark i.fab,
.bg-dark i.fab {
    font-family: "Font Awesome 5 Brands", "FontAwesome" !important;
    font-weight: 400 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure Font Awesome Brands is loaded */
@font-face {
    font-family: "Font Awesome 5 Brands";
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/webfonts/fa-brands-400.woff2") format("woff2"),
         url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/webfonts/fa-brands-400.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

/* ==========================================
   SERVICE DETAILS PAGE STYLES
   ========================================== */

/* Service Details Main Container */
.service-details-main {
    background: #f8f9fa;
}

/* Other Services Desktop Images */
.other-service-item {
    transition: all 0.3s ease;
}

.other-service-item:hover {
    transform: translateX(5px);
}

.other-service-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

.other-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.other-service-icon {
    width: 80px;
    height: 80px;
}

.other-service-title {
    font-size: 0.95rem;
    line-height: 1.3;
}

.other-service-arrow {
    font-size: 0.7rem;
}

.other-service-link {
    font-size: 0.8rem;
}

/* Contact Card Items */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Service Info Items */
.service-info-item {
    transition: all 0.3s ease;
}

.service-info-item:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Ensure proper icon alignment */
.service-info-card .d-flex.align-items-center i,
.contact-item i {
    flex-shrink: 0;
}

/* Service Info and Contact Text Alignment */
.service-info-item div,
.contact-item div {
    width: 100%;
}

.service-info-item h6,
.contact-item small {
    margin-bottom: 0.25rem;
}

.service-info-item p,
.contact-item strong {
    margin-bottom: 0;
}

/* Newsletter Form Responsive Design */
.newsletter-form-container {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newsletter-input {
    flex: 1;
    border: none !important;
    padding: 12px 16px;
    font-size: 14px;
    background: white;
    border-radius: 0;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: none;
    background: white;
}

.newsletter-btn {
    background: #D4AF37 !important;
    border: none !important;
    color: #000 !important;
    padding: 12px 16px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.newsletter-btn:hover {
    background: #B8941F !important;
    transform: none;
}

.newsletter-btn-text {
    display: inline;
    font-size: 14px;
}

.newsletter-btn-icon {
    display: inline;
    font-size: 14px;
}

/* Desktop Newsletter Form Enhancement */
@media (min-width: 769px) {
    .newsletter-form-container {
        max-width: 450px;
    }
    
    .newsletter-input-group {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .newsletter-input-group:focus-within {
        border-color: #D4AF37;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    }
    
    .newsletter-input {
        padding: 16px 20px;
        font-size: 15px;
        background: white;
    }
    
    .newsletter-btn {
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 700;
        min-width: 100px;
        border-radius: 0 10px 10px 0;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .newsletter-btn:hover::before {
        left: 100%;
    }
    
    .newsletter-btn-text {
        font-size: 15px;
        font-weight: 700;
    }
    
    .newsletter-btn-icon {
        font-size: 15px;
    }
    
    /* RTL Desktop Newsletter */
    [dir="rtl"] .newsletter-btn {
        border-radius: 10px 0 0 10px;
    }
    
    [dir="rtl"] .newsletter-input-group {
        flex-direction: row-reverse;
    }
}

/* Mobile Newsletter Form */
@media (max-width: 576px) {
    .newsletter-form-container {
        max-width: 100%;
        margin: 0;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-input {
        padding: 16px;
        font-size: 16px;
        text-align: center;
        border-radius: 12px 12px 0 0;
    }
    
    .newsletter-btn {
        padding: 16px;
        border-radius: 0 0 12px 12px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .newsletter-btn-text {
        display: inline;
    }
    
    .newsletter-btn-icon {
        display: inline;
        font-size: 16px;
    }
    
    /* RTL Mobile Newsletter */
    [dir="rtl"] .newsletter-input {
        text-align: center;
    }
    
    [dir="rtl"] .newsletter-btn {
        flex-direction: row;
    }
}

/* Tablet Newsletter Form */
@media (min-width: 577px) and (max-width: 768px) {
    .newsletter-form-container {
        max-width: 350px;
    }
    
    .newsletter-input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .newsletter-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Service Cards */
.service-card {
    background: white !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.service-card h4, .service-card h6, .service-card p, .service-card span {
    color: #333 !important;
}

.service-card .text-muted {
    color: #666 !important;
}

/* Service Info Cards */
.service-info-card {
    background: white !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}

.service-info-card .text-dark {
    color: #333 !important;
}

/* Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 2rem;
}

/* Service Image Container */
.service-image-container img {
    border-radius: 12px;
}

/* Service Features */
.service-details-main .btn-square {
    border-radius: 8px;
}

/* Service Process Steps */
.service-details-main .p-3 {
    border-radius: 12px;
}

/* CTA Section */
.service-details-main .bg-white {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* ==========================================
   SERVICE DETAILS MOBILE RESPONSIVE
   ========================================== */

/* Tablet Responsive */
@media (max-width: 768px) {
    .service-details-main .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .service-details-main .row.g-4 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .service-details-main .col-lg-8, 
    .service-details-main .col-lg-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
        border-radius: 12px !important;
    }
    
    .service-card .p-3 {
        padding: 1rem !important;
    }
    
    .service-info-card {
        margin-bottom: 1rem;
        border-radius: 12px !important;
    }
    
    .service-info-card .p-3 {
        padding: 1rem !important;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .service-details-main .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .service-details-main .row.g-4 {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    .service-details-main .col-12 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    /* Service Cards Mobile */
    .service-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .service-card h6 {
        font-size: 0.95rem !important;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .service-card .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-card .d-flex {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .service-card .small {
        font-size: 0.8rem !important;
    }
    
    /* Other Services Mobile */
    .other-service-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .other-service-image img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }
    
    .other-service-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .other-service-title {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .other-service-link {
        font-size: 0.75rem !important;
    }
    
    .other-service-item .ms-3 {
        margin-left: 0.75rem !important;
    }
    
    /* Main Content Mobile */
    .service-details-main h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .service-details-main .lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .service-details-main h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-details-main .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .service-details-main .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    /* Image Mobile */
    .service-image-container {
        margin-bottom: 1.5rem !important;
    }
    
    .service-image-container img {
        border-radius: 12px !important;
    }
    
    /* Features Mobile */
    .service-details-main .btn-square {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .service-details-main .p-3 {
        padding: 1rem !important;
    }
    
    /* CTA Section Mobile */
    .service-details-main .bg-light {
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .service-details-main .bg-light h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-details-main .bg-light p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Sidebar Mobile */
    .sidebar-sticky {
        position: static !important;
    }
}