/* ========================================
   OFFCANVAS MOBILE MENU - MODERN MINIMALIST REDESIGN
   ======================================== */

/* Offcanvas Logo */
.offcanvas__logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Title */
.offcanvas__title {
    font-size: 16px;
    font-weight: 700;
    color: #093224;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(9, 50, 36, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Info List */
.offcanvas__info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.offcanvas__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(9, 50, 36, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(9, 50, 36, 0.05);
}

.offcanvas__info-item:hover {
    background: rgba(9, 50, 36, 0.06);
    border-color: rgba(9, 50, 36, 0.15);
    transform: translateX(4px);
}

.offcanvas__info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #093224 0%, #0d4a34 100%);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(9, 50, 36, 0.2);
}

.offcanvas__info-icon i {
    font-size: 18px !important;
    color: white !important;
    display: inline-block !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-family: "Font Awesome 6 Free" !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.offcanvas__info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.offcanvas__info-label {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offcanvas__info-text {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.offcanvas__info-text:hover {
    color: #093224;
}

/* CTA Buttons */
.offcanvas__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.offcanvas__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.offcanvas__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.offcanvas__cta-btn:active {
    transform: translateY(0);
}

/* Call Button - Orange Gradient */
.offcanvas__cta-btn--call {
    background: linear-gradient(135deg, #FF6B35 0%, #F05941 100%);
    color: white;
}

.offcanvas__cta-btn--call:hover {
    background: linear-gradient(135deg, #ff7d4d 0%, #ff6b53 100%);
    color: white;
}

/* Appointment Button - Green Gradient */
.offcanvas__cta-btn--appointment {
    background: linear-gradient(135deg, #093224 0%, #0d4a34 100%);
    color: white;
}

.offcanvas__cta-btn--appointment:hover {
    background: linear-gradient(135deg, #0d4a34 0%, #115841 100%);
    color: white;
}

.offcanvas__cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.offcanvas__cta-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Social Media Section */
.offcanvas__social {
    padding-top: 32px;
    border-top: 2px solid rgba(9, 50, 36, 0.1);
}

.offcanvas__social-title {
    font-size: 14px;
    font-weight: 700;
    color: #093224;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.offcanvas__social-links {
    display: flex;
    gap: 12px;
}

.offcanvas__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 50, 36, 0.08);
    border-radius: 12px;
    color: #093224;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(9, 50, 36, 0.1);
}

.offcanvas__social-link:hover {
    background: linear-gradient(135deg, #093224 0%, #0d4a34 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(9, 50, 36, 0.25);
}

.offcanvas__social-link i {
    font-size: 18px !important;
    display: inline-block !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-family: "Font Awesome 6 Brands" !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .offcanvas__info-item {
        padding: 14px;
        gap: 14px;
    }

    .offcanvas__info-icon {
        width: 36px;
        height: 36px;
    }

    .offcanvas__info-icon i {
        font-size: 16px !important;
    }

    .offcanvas__info-text {
        font-size: 13px;
    }

    .offcanvas__cta-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .offcanvas__cta-icon {
        width: 18px;
        height: 18px;
    }

    .offcanvas__social-link {
        width: 44px;
        height: 44px;
    }

    .offcanvas__social-link i {
        font-size: 16px !important;
    }
}

/* Remove Old Styles Conflicts */
.offcanvas__contact-icon,
.offcanvas__contact-text {
    /* Deprecated - using new structure */
}

.header-button .btnbox,
.header-button .click-to-call-btn {
    /* Deprecated - replaced with CTA buttons */
    display: none !important;
}

/* ========================================
   MOBILE MENU (MEANMENU) BACKGROUND FIX
   ======================================== */
/* Mobilde menu background-ı şəffaf et - menyu yazıları görünsün */
.mean-container .mean-bar {
    background: transparent !important;
}

.mean-container .mean-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mean-container .mean-nav ul li a {
    color: #093224 !important;
    border-top: 1px solid rgba(9, 50, 36, 0.1) !important;
}

.mean-container .mean-nav ul li a:hover {
    background: rgba(9, 50, 36, 0.05);
    color: #0d4a34 !important;
}
