/**
 * Özcanlar Nakliyat - Custom Styles
 * Minimal, performant, SEO-friendly CSS
 */

/* ===== Variables ===== */
:root {
    --primary-color: #b40039;
    --primary-dark: #033688;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== Top Bar ===== */
.top-bar {
    background: #111;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .info-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.top-bar .info-item a {
    color: #adb5bd !important;
    display: flex;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.top-bar .info-item a:hover {
    color: #fff !important;
}

.top-bar .info-item span {
    font-weight: 500;
}

.top-bar-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.top-bar-social a {
    color: #adb5bd;
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== Header & Navigation ===== */
.header {
    background: #fff;
    z-index: 1000;
    border-bottom: #d9d9d9 8px solid;
    border-top: #0a0a0a 3px solid;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

/* Desktop Menu Enhancements */
@media (min-width: 992px) {
    .header .navbar {
        padding: 0;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
        position: relative;
    }

    /* Vertical Divider */
    .navbar-nav .nav-item:not(:last-child):not(:has(.btn))::after {
        content: "";
        position: absolute;
        right: 0;
        top: 30%;
        height: 40%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.08);
        z-index: 1;
    }

    .navbar-nav .nav-link {
        padding: 2rem 1.5rem !important;
        color: var(--dark-color) !important;
        font-weight: 600;
        letter-spacing: 0.3px;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(13, 110, 253, 0.05);
        color: var(--primary-color) !important;
    }

    .navbar-nav .nav-link.active {
        background-color: var(--primary-color);
        color: #fff !important;
    }

    /* Dropdown alignment fix for new heights */
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        border: 0;
        border-top: 3px solid var(--primary-color);
        border-radius: 0 0 0.5rem 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        min-width: 250px;
        overflow: hidden;
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav .dropdown-item {
        padding: 0.8rem 1.5rem;
        font-weight: 500;
        color: var(--dark-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }

    .navbar-nav .dropdown-item:last-child {
        border-bottom: 0;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: rgba(13, 110, 253, 0.05);
        color: var(--primary-color);
        padding-left: 1.75rem;
    }

    .navbar-nav .dropdown-item.active {
        background-color: var(--primary-color);
        color: #fff;
    }
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 500px;
}

/* ===== Cards ===== */
.card {
    transition: var(--transition);
    border-radius: 0.5rem;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* ===== Service Cards Home ===== */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px !important;
}

.service-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.15);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.service-icon-abs {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    z-index: 5;
}

.service-card:hover .service-icon-abs {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* ===== Buttons ===== */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    transition: var(--transition);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* ===== Forms ===== */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
}

.footer a:hover {
    color: #fff !important;
}

/* ===== Mobile Navigation (Offcanvas) ===== */
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.mobile-nav-link i {
    font-size: 1.25rem;
    width: 24px;
}

.offcanvas {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* ===== Carousel / Slider ===== */
.hero-slider {
    --slider-height: 400px;
    border-bottom: #a10129 14px solid;
}

.carousel-item {
    height: var(--slider-height);
}

.carousel-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    bottom: 20%;
    text-align: left;
    max-width: 700px;
    left: 10%;
    z-index: 10;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption .lead {
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== Page Header ===== */
/* ===== Page Header ===== */
.page-header {
    background-attachment: scroll !important;
    min-height: 120px;
}

.page-header h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive Improvements ===== */
@media (max-width: 991.98px) {
    .carousel-item {
        height: calc(var(--slider-height) * 0.85);
    }

    .carousel-caption h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: calc(var(--slider-height) * 0.7);
        min-height: 300px;
    }

    .carousel-caption {
        bottom: 15%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .page-header {
        background-attachment: scroll !important;
    }
}

/* ===== Performance Optimizations ===== */
/* Reduce repaints */
.card,
.btn,
.nav-link {
    will-change: transform;
}

/* Prevent layout shifts */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .footer,
    .btn,
    .breadcrumb {
        display: none !important;
    }
}

/* ===== Testimonials Page ===== */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== References Page ===== */
.references-page {
    background-color: #f8f9fa;
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.reference-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--bs-primary);
}

.reference-logo-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.reference-logo {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.reference-card:hover .reference-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.reference-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.reference-card:hover .reference-name {
    color: var(--bs-primary);
}

.ref-cta-box {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.ref-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== Gallery Page ===== */
.gallery-filter-wrap {
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    border: none;
    background: #fff;
    color: #4b5563;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    margin: 5px;
}

.gallery-filter-btn:hover {
    background: #f3f4f6;
    color: var(--bs-primary);
}

.gallery-filter-btn.active {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 10px 15px rgba(13, 110, 253, 0.2);
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: none;
    cursor: pointer;
}

.gallery-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .gallery-card-img-wrap img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-card-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.gallery-card:hover .gallery-card-title,
.gallery-card:hover .gallery-card-category {
    transform: translateY(0);
}

.gallery-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #e4e6ef;
    font-size: 14px;
    margin-right: 2px;
}

.testimonial-rating i.active {
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ===== Blog Page ===== */
.blog-featured-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.featured-img-wrap {
    height: 400px;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-featured-card:hover .featured-img-wrap img {
    transform: scale(1.05);
}

.blog-item-card {
    border: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.blog-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item-card:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--bs-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-body {
    padding: 30px;
}

.blog-cat-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-primary);
    margin-bottom: 12px;
    display: inline-block;
}

.blog-title {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pagination-modern .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    margin: 0 5px;
    border: none;
    color: #4b5563;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pagination-modern .page-item.active .page-link {
    background: var(--bs-primary);
    color: #fff;
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.25);
}

.pagination-modern .page-link:hover {
    background: #f3f4f6;
    color: var(--bs-primary);
}

.author-name {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--dark-color);
}

.author-city {
    font-size: 0.85rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.author-city i {
    margin-right: 4px;
    color: var(--primary-color);
    font-size: 11px;
}

.cta-banner {
    border: none;
}

.cta-banner .btn-light:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Services Page ===== */
.service-item-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--bs-primary);
}

.service-item-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-item-card:hover .service-item-img-wrap img {
    transform: scale(1.1);
}

.service-item-icon-box {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
    z-index: 2;
}

.service-item-body {
    padding: 40px 30px 30px;
}

.service-item-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step-card:hover {
    background: var(--bs-primary);
    color: #fff;
}

.process-step-card:hover .step-number-circle {
    background: #fff;
    color: var(--bs-primary);
}

.process-step-card:hover p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-check-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-check-item:hover {
    border-color: var(--bs-primary);
    transform: translateX(5px);
}

.feature-check-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ===== Blog Detail Page ===== */
.blog-post-article {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h2,
.blog-post-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.blog-post-content blockquote {
    border-left: 5px solid var(--bs-primary);
    padding: 20px 30px;
    background: #f9fafb;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    margin: 2rem 0;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.sidebar-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 3px;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.cat-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.cat-list-link:hover {
    color: var(--bs-primary);
    padding-left: 5px;
}

.share-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

.share-social-btn:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    transform: translateY(-3px);
}

/* ===== Contact Page ===== */
.contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bs-primary);
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-box {
    background: var(--bs-primary);
    color: #fff;
    transform: rotate(10deg);
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 5px solid #fff;
    height: 450px;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.social-link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
}

.social-link-btn:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    transform: translateY(-3px);
}