/* ========================================
   Mobil Asansör - CSS Stilleri
   Renkler: Sarı (#FFC107), Mavi (#1976D2), Beyaz
======================================== */

:root {
    --primary-blue: #1976D2;
    --primary-yellow: #FFC107;
    --dark-blue: #0D47A1;
    --light-blue: #64B5F6;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #424242;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.top-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-header a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.top-header i {
    margin-right: 5px;
}

.navbar {
    background: var(--primary-blue) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-yellow) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    background: var(--white);
    margin: 0 3px;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    background: var(--primary-yellow);
    color: var(--white) !important;
}

.navbar-nav .dropdown-menu {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar-nav .dropdown-item {
    color: var(--primary-blue);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary-yellow);
    color: var(--white);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.85) 0%, rgba(13, 71, 161, 0.85) 100%);
    z-index: 1;
}

.hero-slide.active {
    display: flex;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 193, 7, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-blue);
}

.slider-nav:hover {
    background: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--white);
}

/* ========================================
   SECTION STYLING
======================================== */
.asansor-kiralama-section {
    padding: 80px 0;
    background: var(--white);
}

.asansor-kiralama-section img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.asansor-kiralama-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.asansor-kiralama-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.asansor-kiralama-section strong {
    color: var(--primary-blue);
    font-weight: 600;
}

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

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

section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 20px auto;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICE CARDS
======================================== */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-yellow);
}

.service-card i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: var(--white);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.05);
}

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

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

.blog-card-img {
    width: 100%;
    height: 250px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-body h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.blog-card-body p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.blog-card-body a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card-body a:hover {
    color: var(--primary-yellow);
}

/* ========================================
   TABS
======================================== */
.nav-tabs {
    border-bottom: 3px solid var(--primary-yellow);
}

.nav-tabs .nav-link {
    color: var(--primary-blue);
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link:hover {
    background: var(--primary-yellow);
    color: var(--white);
}

.tab-content {
    padding: 40px;
    background: var(--white);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ========================================
   ACCORDION (FAQ)
======================================== */
.accordion-item {
    border: 2px solid var(--primary-blue);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-yellow);
    color: var(--dark-blue);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    background: var(--light-gray);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    border-left: 5px solid var(--primary-yellow);
}

.testimonial-card i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.testimonial-card h5 {
    color: var(--primary-blue);
    font-weight: bold;
}

/* ========================================
   GALLERY
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item i {
    font-size: 4rem;
    color: var(--white);
}

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 40px 0;
    color: var(--white);
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--white);
}

.breadcrumb-item a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

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

/* ========================================
   SIDEBAR
======================================== */
.sidebar {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

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

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

.sidebar ul li a {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    background: var(--primary-yellow);
    color: var(--white);
    border-left-color: var(--primary-blue);
    padding-left: 25px;
}

/* ========================================
   CONTENT AREA
======================================== */
.content-area {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-area h1 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-area h2 {
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
}

.content-area p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-area ul, .content-area ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-area li {
    margin-bottom: 10px;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.contact-form textarea {
    min-height: 150px;
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* ========================================
   CONTACT INFO
======================================== */
.contact-info-card {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 15px;
}

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

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

.footer-content ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--white);
    transform: translateY(-3px);
}

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

/* ========================================
   ABOUT PAGE
======================================== */
.about-section {
    padding: 60px 0;
}

.about-img {
    width: 100%;
    height: 400px;
    background: var(--light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 30px;
}

.stats-box {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stats-box:hover {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    transform: translateY(-10px);
}

.stats-box h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .sidebar {
        margin-top: 30px;
        position: static;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

/* ========================================
   STICKY CONTACT BUTTONS
======================================== */
.sticky-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FF9800 100%);
}

.phone-btn:hover {
    box-shadow: 0 6px 30px rgba(255, 193, 7, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 0 10px rgba(255,193,7,0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
}

/* Mobil için küçült */
@media (max-width: 768px) {
    .sticky-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* ========================================
   UTILITIES
======================================== */
.bg-light-gray {
    background: var(--light-gray);
}

.text-blue {
    color: var(--primary-blue);
}

.text-yellow {
    color: var(--primary-yellow);
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

/* ========================================
   MOBİL DÜZELTMELER
======================================== */
@media (max-width: 991px) {
    /* Top header mobilde gizle */
    .top-header {
        display: none !important;
    }
    
    /* Mevcut kodlarının arasına bunu ekle veya güncelle */
    .offcanvas .dropdown-menu {
        display: none; /* Varsayılan olarak gizli */
        position: static !important;
        transform: none !important;
        background-color: var(--light-gray) !important;
        border: none !important;
        padding: 0 !important;
        margin: 10px 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        transition: none !important; /* JS ile show class'ı eklenince anında görünsün */
    }

    /* JS ile 'show' class'ı eklendiğinde görünür yap */
    .offcanvas .dropdown-menu.show {
        display: block !important;
    }
    
    .offcanvas .dropdown-item {
        text-align: center;
        padding: 10px;
        border-radius: 5px;
    }
}
    
    /* Offcanvas menü düzeltmeleri */
    .offcanvas-body {
        text-align: center;
    }
    
    .offcanvas-body .navbar-nav {
        align-items: center;
        width: 100%;
    }
    
    .offcanvas-body .nav-link {
        width: 90%;
        margin: 5px auto !important;
        text-align: center;
    }
    
    /* Dropdown menü düzeltmesi */
    .offcanvas-body .dropdown-menu {
        width: 90%;
        margin: 5px auto;
        position: static !important;
        transform: none !important;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .offcanvas-body .dropdown-item {
        background: var(--light-gray);
        margin: 5px 0;
        border-radius: 5px;
    }
    
    /* Footer mobil düzeltme */
    footer .row {
        text-align: center;
    }
    
    footer .footer-content {
        margin-bottom: 30px;
    }
    
    footer .social-links {
        justify-content: center;
        display: flex;
    }
    
    footer .social-links a {
        margin: 0 8px;
    }
    
    /* İkon boşlukları */
    .service-card i {
        margin-bottom: 25px;
    }
    
    .testimonial-card i {
        margin-bottom: 20px;
    }
    
    .contact-info-card i {
        margin-bottom: 20px;
    }
    
    /* Hero content mobil */
    .hero-content {
        padding: 0 30px;
    }
}

/* Dropdown toggle icon */
.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
}

/* ========================================
   MOBİL DROPDOWN MENÜ DÜZELTMELER
======================================== */
@media (max-width: 991px) {
    /* Dropdown için ek stiller */
    .offcanvas .dropdown-menu.show {
        display: block !important;
        position: static !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        margin-top: 10px !important;
    }
    
    .offcanvas .dropdown-item {
        background: var(--light-gray) !important;
        margin: 8px auto !important;
        border-radius: 8px !important;
        width: 90% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        color: var(--primary-blue) !important;
        font-weight: 500 !important;
    }
    
    .offcanvas .dropdown-item:hover {
        background: var(--primary-yellow) !important;
        color: var(--white) !important;
    }
    
    .offcanvas .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .offcanvas .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

/* ========================================
   MOBİL DROPDOWN - OFFCANVAS İÇİN (EKLE)
======================================== */
@media (max-width: 991px) {
    .top-header {
        display: none !important;
    }

    /* Offcanvas içinde dropdown menü */
    .offcanvas .dropdown-menu {
        display: none !important;
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 10px 0 !important;
        background: var(--light-gray) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        padding: 8px 0 !important;
    }

    .offcanvas .dropdown-menu.show {
        display: block !important;
    }

    .offcanvas .dropdown-item {
        text-align: center;
        padding: 12px 20px !important;
        margin: 4px 8px !important;
        border-radius: 6px !important;
        background: var(--white) !important;
        color: var(--primary-blue) !important;
        font-weight: 500;
    }

    .offcanvas .dropdown-item:hover {
        background: var(--primary-yellow) !important;
        color: var(--white) !important;
    }

    /* Nav linkler mobilde */
    .offcanvas .nav-link {
        width: 90%;
        margin: 5px auto !important;
        text-align: center;
        background: var(--white);
        color: var(--primary-blue) !important;
        border-radius: 8px;
    }

    .offcanvas .nav-link:hover {
        background: var(--primary-yellow);
        color: var(--white) !important;
    }
}

/* OK DÖNME EFEKTİ */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}
.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* AKTİF SAYFA VURGUSU (isteğe bağlı) */
.navbar-nav .nav-link.active {
    background: var(--primary-yellow) !important;
    color: var(--white) !important;
}