/*
 * Future Transport Website Styles
 * Custom CSS for transport company website
 */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-red: #E31E24;
    --dark-navy: #001F3F;
    --navy-blue: #0A1F44;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Offset for fixed navbar */
/* body {
    padding-top: 140px;
} */


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    margin: 0 8px;
}

.top-bar i {
    font-size: 15px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar .contact-info span {
    font-size: 13px;
}

.top-bar .contact-info i {
    margin-right: 5px;
}

/* .top-bar .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
} */

.top-bar .social-links a {
    /* width: 20px;
    height: 20px; */
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ===== NAVIGATION ===== */
.main-nav {
    /* position: fixed;
    top: 0; */
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-ar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-ar:hover {
    background-color: #c01419;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.png') repeat;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-section .breadcrumb-item {
    color: var(--white);
    font-size: 14px;
}

.hero-section .breadcrumb-item a {
    color: var(--white);
    opacity: 0.8;
}

.hero-section .breadcrumb-item.active {
    color: var(--primary-red);
}

.hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: "/";
}

/* ===== HOME HERO SECTION ===== */
.home-hero {
    /* background: var(--dark-navy); */
    color: var(--white);
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.home-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-hero h1 span {
    color: var(--primary-red);
}

.home-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.home-hero-image {
    position: relative;
    z-index: 1;
}

.home-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.herosectioncarousel .hero-img {
    height: 500px;
    object-fit: cover;
}

.herosectioncarousel .custom-carousel-control .carousel-control-prev-icon,
.herosectioncarousel .custom-carousel-control .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

.herosectioncarousel .custom-carousel-control:hover .carousel-control-prev-icon,
.herosectioncarousel .custom-carousel-control:hover .carousel-control-next-icon {
    background-color: #333;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--white);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content .section-title {
    text-align: left;
}

.about-content h3 span {
    color: var(--primary-red);
}

.about-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--light-gray);
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff4444 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.service-icon {
    position: relative;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 60px;
    color: var(--primary-red);
}

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

.service-icon .icon-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-red);
    transform: rotate(45deg);
}

.service-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.btn-primary-custom:hover {
    background-color: #c01419;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-red);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== GALLERY SECTION ===== */
.gallery-nav-btn {
    width: 40px;
    height: 40px;
    z-index: 10;
    background-color: #fff;
    border: 1px solid #eee;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev-btn {
    left: -10px;
}

.gallery-next-btn {
    right: -10px;
}

@media (min-width: 768px) {
    .gallery-nav-btn {
        width: 50px;
        height: 50px;
    }

    .gallery-prev-btn {
        left: -60px;
    }

    .gallery-next-btn {
        right: -60px;
    }

    .gallery-container-wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.gallery-nav-btn:hover {
    background-color: #f8f9fa;
    color: #000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery-section {
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: inherit;
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 230px;
    }
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item-details img{
    height: 300px !important;
    object-fit: inherit !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 18px;
    margin: 0;
}

.gallery-section .custom-carousel-control .carousel-control-prev-icon,
.gallery-section .custom-carousel-control .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

.gallery-section .custom-carousel-control:hover .carousel-control-prev-icon,
.gallery-section .custom-carousel-control:hover .carousel-control-next-icon {
    background-color: #333;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.client-logo {
    padding: 20px;
    text-align: center;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 150px;
    height: auto;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.clients-logo-box {
    /* background-color: #f8f9fa; */
    overflow: hidden;
}

.clients-logo-box .client-logo {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    margin: 0 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.4);
}

.clients-logo-box .client-logo:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Dots styling */
.carousel-indicators.dots-bottom {
    position: absolute;
    bottom: -25px;
    /* أسفل الصندوق */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 10;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-indicators.dots-bottom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* دائرة */
    background-color: #000;
    opacity: 0.5;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators.dots-bottom button.active {
    opacity: 1;
    background-color: #ff0000;
}




/* ===== BLOG/NEWS SECTION ===== */
.blog-section {
    background-color: var(--white);
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.blog-content .btn-details {
    color: var(--light-gray);
    font-size: 18px;
    background-color: var(--navy-blue);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.blog-content .btn-details:hover {
    color: var(--navy-blue);
    background-color: var(--light-gray);
    border: 2px solid var(--navy-blue)
}


/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ===== PERSONNEL TRANSPORT SECTION ===== */
.transport-section {
    background-color: var(--white);
    padding: 80px 0;
}

.transport-header {
    margin-bottom: 50px;
}

.transport-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.transport-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.transport-main-image img {
    width: 100%;
    height: auto;
}

.transport-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.transport-gallery {
    margin-top: 50px;
}

.transport-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.transport-gallery-item img {
    width: 100%;
    /* height: 350px;
    object-fit: cover; */
    max-height: 350px;
    object-fit: initial;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin-bottom: 12px;
}

.footer-content ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-content ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.icon-footer {
    margin-right: 10px;
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #222;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.footer-social a:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--primary-red);
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    /* body {
        padding-top: 120px;
    } */

    .hero-section h1,
    .home-hero h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content,
    .home-hero-image {
        margin-top: 30px;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-ar {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 20px 0;
    }

    .hero-section,
    .home-hero {
        padding: 20px 0;
        min-height: auto;
    }

    .herosectioncarousel .hero-img {
        height: auto;
        max-height: 170px;
    }

    .hero-section h1,
    .home-hero h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .hero-section h1,
    .home-hero h1 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .transport-header h2 {
        font-size: 24px;
    }
}

/* ===== BLOG STYLES ===== */
.blog-meta {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta span {
    margin-right: 20px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-red);
}

/* ===== BLOG DETAIL STYLES ===== */
.blog-detail-section {
    background-color: var(--white);
}

.blog-detail-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-image {
    margin-bottom: 30px;
}

.blog-detail-image img {
    width: 100%;
    border-radius: 10px;
}

.blog-detail-meta {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.blog-detail-meta span {
    margin-right: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-detail-meta i {
    margin-right: 5px;
    color: var(--primary-red);
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-detail-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-text li {
    margin-bottom: 10px;
}

.blog-quote {
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-red);
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.blog-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blog-quote footer {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.blog-detail-gallery {
    margin: 30px 0;
}

.blog-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.blog-tags h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-tags .badge {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-tags .badge:hover {
    background-color: var(--primary-red) !important;
}

.blog-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.blog-share h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-share .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
}

.search-form .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-form .form-control {
    border: 1px solid var(--border-gray);
    padding: 12px 15px;
}

.search-form .btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 20px;
}

.recent-posts-list, .other-services-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.recent-posts-list li a:hover {
    color: var(--primary-red);
}

.recent-posts-list li a img {
    min-width: 80px;
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts-list li a h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-posts-list li a span {
    font-size: 12px;
    color: var(--text-light);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gray);
}

.categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.categories-list li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.categories-list li a span {
    color: var(--text-light);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    padding: 8px 15px;
    background-color: var(--light-gray);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tags-cloud a:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.other-services-list li .box-image-head h6 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.other-services-list li .box-image-head span {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.other-services-list li .box-image-head img {
    min-width: 80px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}


/* ===== PAGINATION STYLES ===== */
.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
    background-color: var(--white);
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-red);
}

/* ===== CONTACT FORM STYLES ===== */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-form-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-gray);
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-top: -2px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ===== ADDITIONAL CTA STYLES ===== */
.cta-phones {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.bg-navy {
    background-color: #0b1528;
}

.btn-custom-red {
    background-color: #e31820;
    border-color: #e31820;
    color: #ffffff;
    border-radius: 4px;
}

.btn-custom-red:hover {
    background-color: #c4131a;
    border-color: #c4131a;
    color: #ffffff;
}

/* ===== RESPONSIVE UPDATES FOR NEW PAGES ===== */
@media (max-width: 991px) {
    .blog-detail-title {
        font-size: 26px;
    }

    .contact-form-content {
        margin-bottom: 40px;
    }

    .sidebar-widget {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .blog-detail-content {
        padding: 20px;
    }

    .blog-detail-title {
        font-size: 22px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-phones {
        flex-direction: column;
        align-items: center;
    }

    .cta-phones .btn {
        width: 100%;
        max-width: 300px;
    }
}