/*
====================================
YENER LOGISTICS - CUSTOM CSS
====================================
Referans: Logico Theme (demo.artureanec.com)
Kurumsal Lojistik Web Sitesi Teması
====================================
*/

/* ====================================
   ROOT VARIABLES & COLOR PALETTE
   ==================================== */
:root {
    /* Ana Renk Paleti - Referans Site + Mavi Vurgu */
    --primary-color: #2a41ff;
    --primary-dark: #1e31cc;
    --primary-light: #4d5fff;
    --secondary-color: #1F1F1F;
    --dark-bg: #111111;
    --white: #FFFFFF;
    --gray-light: #BEBEBE;
    --gray-medium: #333333;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing - Referans siteden */
    --border-radius-main: 25px;
    --padding-section: 150px;
    --padding-card: 53px 55px;
    --gap-large: 60px 120px;

    /* Transitions */
    --transition-base: 0.3s ease;
}

/* ====================================
   TYPOGRAPHY - Space Grotesk + Manrope
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.667;
    color: var(--gray-medium);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Başlıklar - Referans sitedeki gibi BÜYÜK */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(56px, 8vw, 120px);
}

h2 {
    font-size: clamp(42px, 6vw, 80px);
}

h3 {
    font-size: clamp(32px, 5vw, 60px);
}

h4 {
    font-size: clamp(24px, 3vw, 40px);
}

h5 {
    font-size: 25px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
}

p {
    font-size: 18px;
    line-height: 1.667;
    margin-bottom: 20px;
}

/* ====================================
   BUTTONS - Referans site stilinde
   ==================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: calc(0.667em + 2px) 2.5em;
    border-radius: var(--border-radius-main);
    border: 2px solid transparent;
    font-size: 18px;
    text-transform: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(42, 65, 255, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-dark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

.btn-lg {
    padding: calc(0.8em + 2px) 3em;
    font-size: 20px;
}

/* ====================================
   HEADER - Top Bar + Navigation
   ==================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    font-size: 15px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar i {
    opacity: 0.8;
}

/* Main Header - Sticky */
.main-header {
    background: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    padding: 18px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    letter-spacing: -0.02em;
    transition: var(--transition-base);
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--secondary-color);
    padding: 12px 22px !important;
    border-radius: 20px;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(42, 65, 255, 0.05);
}

/* ====================================
   HERO SLIDER SECTION - Referans
   ==================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 65, 255, 0.92) 0%, rgba(17, 17, 17, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.5;
    margin-bottom: 45px;
    opacity: 0.95;
}

/* Owl Carousel Custom Navigation */
.hero-slider-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-slider-section .owl-nav button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50%;
    font-size: 24px;
    color: var(--white) !important;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.hero-slider-section .owl-nav button:hover {
    background: var(--primary-color) !important;
}

.hero-slider-section .owl-nav .owl-prev {
    left: 40px;
}

.hero-slider-section .owl-nav .owl-next {
    right: 40px;
}

.hero-slider-section .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-section .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: var(--transition-base);
}

.hero-slider-section .owl-dots .owl-dot span {
    display: none;
}

.hero-slider-section .owl-dots .owl-dot.active,
.hero-slider-section .owl-dots .owl-dot:hover {
    width: 40px;
    border-radius: 6px;
    background: var(--white);
}

/* ====================================
   SECTION STYLES
   ==================================== */
.section {
    padding: var(--padding-section) 0;
}

.section-sm {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    margin-bottom: 25px;
}

.section-title p {
    font-size: 20px;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Background Variants */
.bg-dark-custom {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bg-dark-custom h1,
.bg-dark-custom h2,
.bg-dark-custom h3,
.bg-dark-custom h4,
.bg-dark-custom h5,
.bg-dark-custom h6 {
    color: var(--white);
}

.bg-dark-custom p {
    color: var(--gray-light);
}

.bg-light-gray {
    background-color: #F8F9FA;
}

/* ====================================
   ICON BOX - Referans site stilinde
   ==================================== */
.icon-box-wrapper {
    padding: var(--padding-card);
    background: var(--white);
    border-radius: var(--border-radius-main);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.icon-box-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(42, 65, 255, 0.12);
    transform: translateY(-8px);
}

.icon-box-icon {
    width: 115px;
    height: 115px;
    margin-bottom: 35px;
}

.icon-box-icon img,
.icon-box-icon svg,
.icon-box-icon i {
    width: 100%;
    height: 100%;
    object-fit: contain;
    font-size: 85px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-wrapper h4 {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
    font-weight: 600;
}

.icon-box-wrapper p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* ====================================
   SERVICE CARDS - Stacked Layout
   ==================================== */
.service-card-modern {
    display: flex;
    align-items: flex-start;
    padding: 45px;
    background: var(--white);
    border-radius: var(--border-radius-main);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
    gap: 30px;
}

.service-card-modern:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.service-card-icon {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

.service-card-content h4 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card-content p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* ====================================
   STATISTICS / COUNTERS
   ==================================== */
.stat-box {
    text-align: center;
    padding: 60px 30px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(56px, 6vw, 100px);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bg-dark-custom .stat-number {
    color: var(--white);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-medium);
}

.bg-dark-custom .stat-label {
    color: var(--gray-light);
}

/* ====================================
   DECORATION BLOCKS - Referans
   ==================================== */
.block-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-main);
    opacity: 0.1;
    z-index: 0;
}

.block-decoration-1 {
    background: var(--primary-color);
    top: -50px;
    left: -50px;
}

.block-decoration-2 {
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
}

/* ====================================
   CARDS & CONTENT BOXES
   ==================================== */
.card-custom {
    background: var(--white);
    border-radius: var(--border-radius-main);
    overflow: hidden;
    transition: var(--transition-base);
    border: none;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.card-custom img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-base);
}

.card-custom:hover img {
    transform: scale(1.08);
}

.card-custom-body {
    padding: 40px;
}

.card-custom-body h4 {
    font-size: 26px;
    margin-bottom: 18px;
}

.card-custom-body p {
    color: var(--gray-medium);
    margin-bottom: 25px;
}

/* ====================================
   BLOG CARDS
   ==================================== */
.blog-card-item {
    background: var(--white);
    border-radius: var(--border-radius-main);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.blog-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.blog-card-item:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.blog-card-content {
    padding: 40px;
}

.blog-card-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--gray-light);
}

.blog-card-title {
    font-size: 28px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

/* ====================================
   FORMS
   ==================================== */
.form-control,
.form-select {
    padding: 18px 24px;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    font-size: 17px;
    font-family: var(--font-body);
    transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(42, 65, 255, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.form-label {
    font-weight: 600;
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

/* ====================================
   FOOTER - Koyu tema
   ==================================== */
.footer {
    background: var(--secondary-color);
    color: var(--gray-light);
    padding-top: var(--padding-section);
    padding-bottom: 60px;
}

.footer h5 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 35px;
}

.footer p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    display: inline-block;
    font-size: 17px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: var(--transition-base);
    padding: 0;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    padding-left: 0;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 16px;
}

/* ====================================
   WHATSAPP FLOAT BUTTON
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
    color: var(--white);
}

/* ====================================
   SCROLL TO TOP
   ==================================== */
.scroll-to-top {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 998;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* ====================================
   BREADCRUMB SECTION
   ==================================== */
.breadcrumb-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.breadcrumb-section h1 {
    color: var(--white);
    margin-bottom: 25px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   UTILITIES
   ==================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-custom {
    border-radius: var(--border-radius-main);
}

.shadow-custom {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Gap utilities */
.gap-60 {
    gap: 60px;
}

.gap-120 {
    gap: 120px;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ====================================
   ACCESSIBILITY
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ====================================
   CONTAINER CUSTOM
   ==================================== */
.container-custom {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ====================================
   ADDITIONAL PAGE STYLES
   ==================================== */

/* Top Bar Variants */
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .top-bar-left {
        justify-content: flex-start;
    }
    .top-bar-right {
        justify-content: flex-end;
    }
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

/* Navbar Dark Variant */
.navbar-dark {
    background-color: var(--white);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 31, 31, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Section Padding */
.section-padding {
    padding: 120px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Info Card */
.contact-info-card {
    padding: 45px 30px;
    background: var(--white);
    border-radius: var(--border-radius-main);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(42, 65, 255, 0.15);
    transform: translateY(-8px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 25px;
}

.contact-info-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--gray-medium);
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    padding: 50px;
    background: var(--white);
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-info-text {
    font-size: 15px;
    color: var(--gray-light);
}

/* Map Wrapper */
.map-wrapper {
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Working Hours */
.working-hours-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.working-hours-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #F0F0F0;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.working-hours-list .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.working-hours-list .hours {
    color: var(--primary-color);
    font-weight: 600;
}

/* Feature Box Simple */
.feature-box-simple {
    padding: 40px 30px;
    transition: var(--transition-base);
}

.feature-box-simple:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 25px;
}

.feature-box-simple h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box-simple p {
    margin-bottom: 0;
    color: var(--gray-medium);
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-main) !important;
    margin-bottom: 20px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    padding: 25px 30px;
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-body {
    padding: 25px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-medium);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.cta-section h2 {
    color: var(--white);
}

/* Footer Additional Styles */
.footer-widget {
    margin-bottom: 0;
}

.footer-widget-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    padding: 0;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    padding: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-copyright {
    color: var(--gray-light);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    font-size: 15px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 998;
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

.back-to-top.show {
    display: flex;
}

/* ====================================
   BLOG STYLES
   ==================================== */

/* Blog Card Additions */
.blog-card-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 25px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-main);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

/* Search Form */
.search-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 18px 30px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #F8F9FA;
    border-radius: 12px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.category-list .count {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
}

.recent-post-img {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.recent-post-item:hover .recent-post-img img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.recent-post-title a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 14px;
    color: var(--gray-light);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 10px 20px;
    background: #F8F9FA;
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.cta-widget-content h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-widget-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-widget-content i {
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.pagination {
    gap: 8px;
}

.page-item .page-link {
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-item .page-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ====================================
   BLOG DETAIL STYLES
   ==================================== */

/* Blog Detail */
.blog-detail {
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-main);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.blog-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    color: var(--gray-light);
}

.blog-meta-info i {
    margin-right: 6px;
}

.blog-detail-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 35px;
}

.blog-detail-image {
    border-radius: var(--border-radius-main);
    overflow: hidden;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-medium);
}

.blog-detail-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-top: 45px;
    margin-bottom: 25px;
}

.blog-detail-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 35px;
    margin-bottom: 20px;
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-detail-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Blog Highlight Box */
.blog-highlight-box {
    padding: 40px;
    background: #F8F9FA;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-main);
    margin: 40px 0;
}

.blog-highlight-box h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Info Card */
.info-card {
    padding: 35px;
    background: #F8F9FA;
    border-radius: var(--border-radius-main);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 20px;
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.info-card p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Blog Blockquote */
.blog-blockquote {
    padding: 40px 50px;
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-main);
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
}

.blog-blockquote footer {
    margin-top: 20px;
    font-size: 16px;
    color: var(--gray-light);
    font-style: normal;
}

/* Checklist Box */
.checklist-box {
    padding: 35px;
    background: #F8F9FA;
    border-radius: var(--border-radius-main);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #E5E5E5;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.checklist-item span {
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Blog Detail Tags */
.blog-detail-tags h5,
.blog-detail-share h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.share-btn:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.whatsapp {
    background: #25D366;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    padding: 45px;
    background: #F8F9FA;
    border-radius: var(--border-radius-main);
}

.author-avatar {
    min-width: 100px;
    width: 100px;
    height: 100px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 18px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.author-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Related Posts */
.related-posts h3 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 35px;
}

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonial-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-main);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(42, 65, 255, 0.12);
    transform: translateY(-8px);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author-info span {
    font-size: 15px;
    color: var(--gray-light);
}

/* ====================================
   IMAGE HOVER ZOOM
   ==================================== */

.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--border-radius-main);
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.08);
}

/* ====================================
   FADE IN ANIMATION
   ==================================== */

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   GALLERY STYLES
   ==================================== */

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 65, 255, 0.95), rgba(31, 31, 31, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.gallery-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-btn {
    background: var(--white);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition-base);
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Modal */
#galleryModal .modal-content {
    border: none;
    border-radius: var(--border-radius-main);
    overflow: hidden;
}

#galleryModal .modal-header {
    background: var(--secondary-color);
    color: var(--white);
    border-bottom: none;
    padding: 20px 30px;
}

#galleryModal .modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

#galleryModal .btn-close {
    filter: invert(1);
    opacity: 1;
}

#galleryModal .modal-body {
    padding: 30px;
    background: #F8F9FA;
}

#modalImage {
    border-radius: var(--border-radius-main);
    max-height: 70vh;
    object-fit: contain;
}
