/* ===========================================
   GÜZELADAM HİDROLİK - ANA STIL DOSYASI
   =========================================== */

/* ===========================================
   1. CSS DEĞİŞKENLERİ
   =========================================== */
:root {
    /* Ana Renkler */
    --primary-color: #0A2342;
    --secondary-color: #C0C0C2;
    --bg-color: #F4F7F9;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Metin Renkleri */
    --text-primary: #0A2342;
    --text-secondary: #666666;
    --text-light: #999999;
    
    /* Hover ve Vurgu */
    --hover-color: #1a3a5c;
    --accent-color: #2563eb;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    /* Font */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===========================================
   2. RESET & TEMEL STİLLER
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================================
   3. TOPBAR
   =========================================== */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.topbar-left .topbar-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-info li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info li i {
    color: var(--secondary-color);
    font-size: 12px;
}

.topbar-info li a,
.topbar-info li span {
    color: var(--white);
    opacity: 0.9;
}

.topbar-info li a:hover {
    opacity: 1;
    color: var(--white);
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
}

.topbar-right .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
    transition: opacity var(--transition-fast);
}

.social-links li a:hover {
    opacity: 1;
}

/* ===========================================
   4. HEADER & NAVBAR
   =========================================== */
.header-area {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-area .navbar {
    padding: 15px 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px !important;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-primary);
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    color: var(--accent-color);
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366;
    color: var(--white) !important;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color var(--transition-fast);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white) !important;
}

/* ===========================================
   5. MEGA MENU
   =========================================== */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    padding: 30px 0;
    border-radius: 0;
    margin-top: 0 !important;
    border-top: 3px solid var(--primary-color);
}

.mega-menu-col {
    border-right: 1px solid #eee;
    padding: 0 25px;
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-menu-image {
    display: block;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    background-color: var(--bg-color);
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.mega-menu-image:hover img {
    transform: scale(1.08);
}

.mega-menu-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--secondary-color);
}

.mega-menu-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mega-menu-title a {
    color: var(--primary-color);
}

.mega-menu-title a:hover {
    color: var(--accent-color);
}

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-links li {
    margin-bottom: 8px;
}

.mega-menu-links li a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.mega-menu-links li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.mega-menu-links li.view-all a {
    color: var(--accent-color);
    font-weight: 600;
}

.mega-menu-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* ===========================================
   6. SLIDER / HERO SECTION
   =========================================== */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 500px;
    background-color: var(--primary-color);
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
    left: 10%;
    right: 50%;
}

.hero-slider .carousel-caption h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slider .carousel-caption p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-slider .btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
}

/* ===========================================
   7. SLOGAN KARTLARI
   =========================================== */
.slogan-section {
    padding: 60px 0;
    background-color: var(--white);
}

.slogan-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all var(--transition-normal);
}

.slogan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.slogan-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.slogan-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.slogan-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* ===========================================
   8. HAKKIMIZDA BÖLÜMÜ
   =========================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content .btn {
    margin-top: 20px;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   9. ÜRÜN GRUPLARI
   =========================================== */
.categories-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card .card-image {
    height: 180px;
    overflow: hidden;
    background-color: #ddd;
}

.category-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.category-card .card-body {
    padding: 20px;
    text-align: center;
}

.category-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* ===========================================
   10. SSS BÖLÜMÜ
   =========================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    padding: 20px 25px;
    background-color: var(--white);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 20px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================================
   11. ÜRÜN LİSTESİ
   =========================================== */
.product-list-section {
    padding: 60px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-card .card-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-color);
    position: relative;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 20px;
}

.product-card .category-badge {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.product-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card .price.request-quote {
    font-size: 14px;
    color: var(--accent-color);
}

/* ===========================================
   12. ÜRÜN DETAY
   =========================================== */
.product-detail-section {
    padding: 60px 0;
}

.product-gallery {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-gallery .main-image {
    height: 400px;
    background-color: var(--bg-color);
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.product-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
}

.product-gallery .thumbnail.active,
.product-gallery .thumbnail:hover {
    border-color: var(--primary-color);
}

.product-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.product-info .category {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info .price-box {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.product-info .price-box .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.product-info .price-box .request-quote {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

.product-info .specs-table {
    width: 100%;
    margin-bottom: 25px;
}

.product-info .specs-table th,
.product-info .specs-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.product-info .specs-table th {
    color: var(--text-secondary);
    font-weight: 600;
    width: 40%;
}

/* ===========================================
   13. İLETİŞİM SAYFASI
   =========================================== */
.contact-section {
    padding: 60px 0;
}

.contact-info-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item .content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.contact-form-box {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-form-box .form-control {
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.contact-form-box textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.map-section {
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===========================================
   14. DUYURULAR & MEDYA
   =========================================== */
.announcement-card,
.media-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.announcement-card:hover,
.media-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.announcement-card .card-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.announcement-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-card .card-body {
    padding: 20px;
}

.announcement-card .date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.announcement-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.media-card .card-body {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.media-card .file-icon {
    width: 60px;
    height: 60px;
    background-color: var(--danger-color);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.media-card .file-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.media-card .file-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ===========================================
   15. FOOTER
   =========================================== */
.footer-area {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 45px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}

.footer-social li a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social li a:hover {
    background-color: var(--accent-color);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom .copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links li a:hover {
    color: var(--white);
}

/* ===========================================
   16. FLOATING WHATSAPP
   =========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

/* ===========================================
   17. BACK TO TOP
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
}

/* ===========================================
   18. BREADCRUMB
   =========================================== */
.breadcrumb-section {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================================
   19. BUTTONS
   =========================================== */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===========================================
   20. PAGE HEADER
   =========================================== */
.page-header {
    background-color: var(--primary-color);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

/* ===========================================
   21. SIDEBAR
   =========================================== */
.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-color);
}

.sidebar-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
}

.sidebar-widget ul li a {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-widget ul li a:hover {
    color: var(--accent-color);
}

.sidebar-widget ul li a .count {
    background-color: var(--bg-color);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

/* ===========================================
   22. PAGINATION
   =========================================== */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: var(--primary-color);
    border: none;
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: var(--radius-sm) !important;
}

.page-link:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
}

/* ===========================================
   23. RESPONSIVE
   =========================================== */
@media (max-width: 991.98px) {
    .topbar-left,
    .topbar-right {
        justify-content: center;
    }
    
    .topbar-info {
        justify-content: center;
    }
    
    .mega-menu {
        position: relative !important;
        width: 100%;
        padding: 15px;
    }
    
    .mega-menu-col {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }
    
    .mega-menu-col:last-child {
        border-bottom: none;
    }
    
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider .carousel-item {
        height: 350px;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 22px;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* ===========================================
   24. UTILITY CLASSES
   =========================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--bg-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md) !important;
}

.rounded-custom {
    border-radius: var(--radius-lg) !important;
}
