/* Medical Website Visual Cleanup - Calm & Trustworthy */

/* Remove decorative background dots */
.hero::before {
    display: none !important;
}

/* Unified Color System - Primary Blue Family Only */
.btn-secondary {
    background: #4a90e2 !important;
    color: white !important;
}

.btn-secondary:hover {
    background: #2171b5 !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3) !important;
}

/* Remove all orange/amber/red accent colors */
.warning-text, .decision-text, .follow-up-text {
    background: rgba(74, 144, 226, 0.1) !important;
    border-left: 3px solid #4a90e2 !important;
}

.note-content h4 {
    color: #4a90e2 !important;
}

.appointment-note {
    background: rgba(74, 144, 226, 0.1) !important;
    border: 2px solid rgba(74, 144, 226, 0.3) !important;
}

/* Simplified Medical Disclaimer - Calm Style */
.medical-disclaimer-icon {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

.disclaimer-icon {
    width: 40px !important;
    height: 40px !important;
    background: #4a90e2 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3) !important;
    font-size: 18px !important;
    transition: none !important;
    color: white !important;
}

.disclaimer-popup {
    background: #f9f9f9 !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    width: 280px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
    font-family: 'Inter', sans-serif !important;
}

/* Consistent Visual Hierarchy */
h2, .hero-content h1, .about-text h3, .contact-header h3 {
    color: #2d3748 !important;
}
.nav-logo h2 {
    color: white !important;
}
.hero-content h2 {
    color: #4a90e2 !important;
}

/* Remove section-specific accent colors */
.contact-card.special {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(203, 213, 224, 0.3) !important;
}

.contact-card.address-card:hover, .contact-card.email-card:hover {
    background: rgba(74, 144, 226, 0.1) !important;
    border-color: rgba(74, 144, 226, 0.3) !important;
}

/* Unified button system */
.btn-primary, .video-link {
    background: #4a90e2 !important;
}

.btn-primary:hover, .video-link:hover {
    background: #2171b5 !important;
}

 /* ============================
   MOBILE NAV – FINAL CLEAN FIX
   ============================ */

@media (max-width: 768px) {

  body.menu-open {
    overflow: hidden; /* arka planı kilitle */
  }

  .nav-toggle {
    display: flex;
    z-index: 10001;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;

    background: #ffffff;     /* TAM OPAK */
    display: none;
    flex-direction: column;

    z-index: 10000;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    color: #111111;          /* YÜKSEK KONTRAST */
    font-size: 1.1rem;
    font-weight: 600;

    padding: 16px 24px;
    text-align: center;

    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .nav-menu a:hover {
    background: #f3f4f6;
  }
}

/* FORCE HAMBURGER VISIBILITY */
@media (max-width: 768px) {
  #nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 10002;
  }
}
