/* Custom CSS for Psychologist Website - Dark Green Theme */

:root {
    --primary-color: #2d5a27;
    --primary-light: #4a7c59;
    --primary-dark: #1e3a1a;
    --secondary-color: #6c757d;
    --accent-color: #5cb85c;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
}

/* Icons */
.fa-3x, .fa-4x, .fa-5x {
    margin-bottom: 1rem;
}

/* Profile Image Placeholder */
.profile-image {
    border: 4px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5, footer h6 {
    color: var(--light-color);
}

footer p, footer li {
    color: #adb5bd;
}

/* Accordion */
.accordion-button {
    font-weight: 500;
    border-radius: 8px !important;
}

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

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Custom Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Contact Form Styles */
#contactForm .form-control:invalid {
    border-color: var(--danger-color);
}

#contactForm .form-control:valid {
    border-color: var(--success-color);
}

/* Services Page Specific Styles */
.services .card-body {
    padding: 2rem;
}

.services .fa-4x {
    opacity: 0.8;
}

/* About Page Specific Styles */
.about .profile-image {
    transition: transform 0.3s ease;
}

.about .profile-image:hover {
    transform: scale(1.05);
}

/* Referans sitesi tarzında ek stiller */
.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Navbar güncellemesi */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-scrolled {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* SEO optimizasyonu için ek stiller */
.seo-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.seo-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.seo-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* SEO için önemli metinler */
.seo-highlight {
    font-weight: 600;
    color: var(--primary-color);
}

/* Local business bilgileri için özel stil */
.local-info {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.3);
}

/* Badge'ler için özel stiller */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* SEO için structured data görünürlüğü */
.schema-info {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #20B954);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
    background: linear-gradient(135deg, #20B954, #1BA94C);
}

.whatsapp-float-btn i {
    font-size: 28px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Layout */
@media (max-width: 991.98px) {
    /* Ana navbar'ı mobilde gizle */
    .navbar {
        display: none !important;
    }
    
    /* Main content için padding */
    .main-content {
        margin-top: 60px !important;
        padding-bottom: 95px !important;
    }
}

/* Desktop main content */
@media (min-width: 992px) {
    .main-content {
        margin-top: 76px;
    }
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1040;
    height: 60px;
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.mobile-menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    margin: 4px auto;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
    background: var(--primary-color);
    color: white;
}

.mobile-menu-header .mobile-logo {
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background: rgba(45, 90, 39, 0.1);
    color: var(--primary-color);
}

.mobile-menu-item i {
    width: 20px;
    margin-right: 15px;
    font-size: 18px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(45, 90, 39, 0.1);
    background: rgba(45, 90, 39, 0.05);
}

.mobile-contact-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-contact-info i {
    width: 16px;
    color: var(--primary-color);
}

/* Mobile Bottom Navigation */
@media (max-width: 991.98px) {
    
    /* Hero section mobilde background fix */
    .hero-section {
        background-attachment: scroll !important;
        min-height: 60vh;
    }
    
    /* Hero section buttonları mobilde küçült */
    .hero-section .btn-lg {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-section .display-3 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    /* About section mobilde düzen */
    .profile-image-float {
        float: none !important;
        display: block;
        margin: 0 auto 20px auto !important;
        width: 200px !important;
        height: 250px !important;
    }
    
    .about-text {
        text-align: center !important;
    }
    
    /* Bottom navigation container */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(45, 90, 39, 0.15);
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
        height: 80px;
    }
    
    .mobile-nav-items {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        height: 100%;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #8E8E93;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 8px 12px;
        border-radius: 16px;
        min-width: 70px;
        position: relative;
    }
    
    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: var(--primary-color);
        background: rgba(45, 90, 39, 0.08);
        transform: translateY(-3px) scale(1.05);
    }
    
    .mobile-nav-item i {
        font-size: 26px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-item span {
        font-size: 11px;
        font-weight: 600;
        text-align: center;
        line-height: 1.1;
        letter-spacing: -0.2px;
    }
    
    /* Active state indicator */
    .mobile-nav-item.active::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    /* WhatsApp butonu özel stil (ortada büyük) */
    .mobile-nav-item.whatsapp-btn {
        background: linear-gradient(135deg, #25D366, #20B954);
        color: white;
        border-radius: 50%;
        width: 68px;
        height: 68px;
        margin-top: -26px;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        border: 3px solid white;
    }
    
    .mobile-nav-item.whatsapp-btn:hover {
        background: linear-gradient(135deg, #20B954, #1BA94C);
        color: white;
        transform: translateY(-8px) scale(1.1);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    }
    
    .mobile-nav-item.whatsapp-btn i {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .mobile-nav-item.whatsapp-btn span {
        display: none;
    }
    
    .mobile-nav-item.whatsapp-btn::before {
        display: none;
    }
}

/* Mobile Card Responsive Improvements */
@media (max-width: 768px) {
    /* Service cards mobilde 2x2 grid */
    .service-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
        height: 100%;
    }
    
    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .service-card .card-body {
        padding: 1rem;
    }
    
    /* Hizmetler sayfasında 2 sütun düzeni */
    .services-page .row .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    /* Hizmet kartları için özel düzenlemeler */
    .services-page .service-card {
        height: 100%;
    }
    
    .services-page .service-card .fa-4x {
        font-size: 2.5rem !important;
    }
    
    .services-page .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .services-page .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .services-page .service-card ul {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .services-page .service-card ul li {
        margin-bottom: 0.25rem;
    }
    
    /* Stats section mobilde 2x2 grid */
    .stats-section .row > div {
        margin-bottom: 1.5rem;
    }
    
    .stats-section .display-4 {
        font-size: 1.8rem;
    }
    
    /* Testimonial cards mobilde 2x2 */
    .testimonial-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
        height: 100%;
    }
    
    .testimonial-card .card-body {
        padding: 1rem;
    }
    
    .testimonial-card blockquote {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    /* Ana sayfada hakkımda, hizmetler preview kartları 2x2 */
    .home-about-section .row .col-lg-6,
    .home-services-section .row .col-md-6,
    .testimonials-section .row .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .home-services-section .service-preview-card {
        height: 100%;
        margin-bottom: 0;
    }
    
    .home-services-section .service-preview-card .card-body {
        padding: 1rem;
    }
    
    .home-services-section .service-preview-card h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .home-services-section .service-preview-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Hero section mobilde daha kompakt */
    .hero-section {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Button groups mobilde dikey */
    .hero-section .d-flex,
    .cta-section .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-section .btn,
    .cta-section .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Quick services mobilde 2x2 grid */
    .quick-services .row {
        margin: 0 -0.5rem;
    }
    
    .quick-services .col-6 {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .quick-service-item {
        padding: 1rem 0.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .quick-service-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .quick-service-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .quick-service-item span {
        font-size: 0.8rem;
        font-weight: 500;
    }
}

/* Tablet responsive (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Service cards tablet'te 2 sütun */
    .service-card {
        height: 100%;
    }
    
    /* Stats 2x2 düzeni */
    .stats-section .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
    }
    
    /* Testimonials 2 sütun */
    .testimonial-card {
        height: 100%;
    }
}

/* Small mobile improvements (max-width: 576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Daha küçük padding'ler */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    /* Cards daha az padding */
    .card-body {
        padding: 1.25rem;
    }
    
    /* Font sizes küçült */
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    /* Mobile nav items daha küçük */
    .mobile-nav-item {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .mobile-nav-item i {
        font-size: 22px;
    }
    
    .mobile-nav-item span {
        font-size: 10px;
    }
    
    .mobile-nav-item.whatsapp-btn {
        width: 60px;
        height: 60px;
        margin-top: -22px;
    }
    
    .mobile-nav-item.whatsapp-btn i {
        font-size: 28px;
    }
    
    .mobile-bottom-nav {
        height: 75px;
        padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    }
    
    main {
        padding-bottom: 90px !important;
    }
    
    /* Footer mobilde kompakt düzen */
    footer .row {
        text-align: center;
    }
    
    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    footer .col-lg-4:first-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    footer h5,
    footer h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    footer p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    footer ul {
        margin-bottom: 0.75rem;
    }
    
    footer .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
