/* ============================================
   RandevuSuite Modern Dark Theme Design System
   sunum.html tasarımından uyarlanmıştır
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --dj-primary: #0066FF;
    --dj-primary-dark: #0052CC;
    --dj-primary-light: #4D94FF;
    --dj-secondary: #00D4AA;
    --dj-accent: #FF6B35;

    /* Dark Theme Colors */
    --dj-dark: #0a0a0a;
    --dj-dark-surface: #1A1A2E;
    --dj-dark-light: #16213E;
    --dj-dark-card: rgba(255, 255, 255, 0.03);
    --dj-dark-border: rgba(255, 255, 255, 0.08);

    /* Text Colors */
    --dj-text-primary: #FFFFFF;
    --dj-text-secondary: rgba(255, 255, 255, 0.7);
    --dj-text-muted: rgba(255, 255, 255, 0.5);

    /* Status Colors */
    --dj-success: #22C55E;
    --dj-danger: #EF4444;
    --dj-warning: #F59E0B;

    /* Gradients */
    --dj-gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    --dj-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0a0a1a 100%);
    --dj-gradient-dark-surface: linear-gradient(180deg, #1A1A2E 0%, #0f0f1a 100%);

    /* Shadows */
    --dj-shadow-glow: 0 0 60px rgba(0, 102, 255, 0.3);
    --dj-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);

    /* Border Radius */
    --dj-radius-sm: 8px;
    --dj-radius-md: 14px;
    --dj-radius-lg: 20px;
    --dj-radius-xl: 24px;
    --dj-radius-full: 50px;
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: var(--dj-dark) !important;
    color: var(--dj-text-primary) !important;
    line-height: 1.7;
}

.main-wrapper {
    background: var(--dj-dark) !important;
}

/* ===== HEADER ===== */
.header {
    background: var(--dj-dark-surface);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dj-dark-border);
}

.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .main-nav>li>a {
    color: var(--dj-text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .main-nav>li>a:hover,
.header .main-nav>li.active>a {
    color: var(--dj-text-primary) !important;
}

.header .navbar-brand img {
    filter: brightness(1.1);
}

.header-navbar-rht .btn-primary-gradient {
    background: var(--dj-gradient-primary) !important;
    border: none !important;
    color: var(--dj-text-primary) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.header-navbar-rht .btn-dark {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--dj-text-primary) !important;
}

.header-navbar-rht .btn-dark:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Mobile Menu */
.header-menu {
    background: var(--dj-dark-surface) !important;
}

.menu-header {
    background: var(--dj-dark) !important;
    border-bottom: 1px solid var(--dj-dark-border);
}

.submenu {
    background: var(--dj-dark-surface) !important;
    border: 1px solid var(--dj-dark-border) !important;
}

.submenu li a {
    color: var(--dj-text-secondary) !important;
}

.submenu li a:hover {
    color: var(--dj-text-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* ===== SECTION HEADERS ===== */
.section-inner-header {
    margin-bottom: 50px;
}

.section-inner-header h6 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--dj-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--dj-radius-full);
    margin-bottom: 20px;
}

.section-inner-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--dj-text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dj-gradient-dark-surface) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-img-info img {
    background: var(--dj-gradient-primary);
    border-radius: var(--dj-radius-xl);
    box-shadow: var(--dj-shadow-card);
}

.about-inner-header {
    position: relative;
    z-index: 10;
}

.about-content-details p {
    font-size: 16px;
    color: var(--dj-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--dj-dark-card);
    border: 1px solid var(--dj-dark-border);
    border-radius: var(--dj-radius-lg);
    margin-top: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.about-contact:hover {
    border-color: var(--dj-primary);
    transform: translateX(8px);
}

.about-contact-icon span {
    width: 56px;
    height: 56px;
    background: var(--dj-gradient-primary);
    border-radius: var(--dj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.about-contact-icon span i {
    color: var(--dj-text-primary);
    font-size: 24px;
}

.about-contact-text p {
    font-size: 13px;
    color: var(--dj-text-muted);
    margin-bottom: 4px;
}

.about-contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dj-text-primary);
    margin: 0;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: var(--dj-gradient-dark-surface) !important;
    position: relative;
}

.why-choose-card {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--dj-primary) !important;
    transform: translateY(-4px);
}

.why-choose-card .card-body {
    background: transparent !important;
}

.why-choose-icon span {
    width: 56px;
    height: 56px;
    background: var(--dj-gradient-primary);
    border-radius: var(--dj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-icon span img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.why-choose-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dj-text-primary);
    margin-bottom: 12px;
}

.why-choose-content p {
    font-size: 14px;
    color: var(--dj-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== WAY SECTION (CTA) ===== */
.way-section {
    padding: 60px 0;
    background: var(--dj-gradient-dark) !important;
}

.way-bg {
    background: var(--dj-gradient-dark-surface) !important;
    border-radius: var(--dj-radius-xl);
    position: relative;
    overflow: hidden;
}

.way-inner-header {
    position: relative;
    z-index: 10;
}

.way-inner-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dj-text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.way-inner-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.way-inner-header .btn-primary {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--dj-radius-md);
    background: var(--dj-gradient-primary) !important;
    color: var(--text-light) !important;
    border: none;
    box-shadow: var(--dj-shadow-card);
    transition: all 0.3s ease;
}


.way-inner-header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.way-img {
    position: relative;
    z-index: 10;
}

.way-shapes-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.2;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--dj-gradient-dark-surface) !important;
}

.pricing-inner-header h2 {
    text-align: center;
}

.pricing-card {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--dj-primary) !important;
}

.pricing-card.active {
    border: 2px solid var(--dj-primary) !important;
    box-shadow: var(--dj-shadow-glow);
    transform: scale(1.02);
}

.pricing-card.active:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-card .card-body {
    background: transparent !important;
}

.pricing-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--dj-dark-border);
}

.pricing-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-icon span {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: var(--dj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-title h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dj-text-primary);
    margin: 0;
}

.pricing-header .badge {
    background: var(--dj-gradient-primary);
    color: var(--dj-text-primary);
    padding: 6px 14px;
    border-radius: var(--dj-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.pricing-info {
    padding: 24px;
}

.pricing-amount h2 {
    font-size: 36px;
    font-weight: 800;
    background: var(--dj-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-amount h2 span {
    font-size: 16px;
    font-weight: 400;
    -webkit-text-fill-color: var(--dj-text-muted);
}

.pricing-amount h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dj-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.pricing-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 50px;
    border-bottom: 1px solid var(--dj-dark-border);
    font-size: 14px;
    color: var(--dj-text-secondary);
}

.pricing-list ul li:last-child {
    border-bottom: none;
}

.pricing-list ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(0, 212, 170, 0.2);
    color: var(--dj-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-btn .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--dj-radius-md);
    background: var(--dj-gradient-primary) !important;
    border: none !important;
    transition: all 0.3s ease;
}

.pricing-btn .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--dj-gradient-dark-surface) !important;
}

.faq-section.testimonial-section {
    background: var(--dj-gradient-dark-surface) !important;
}

.faq-img {
    position: relative;
}

.faq-img>img {
    border-radius: var(--dj-radius-xl);
    box-shadow: var(--dj-shadow-card);
}

.faq-patients-count {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--dj-gradient-primary);
    color: var(--dj-text-primary);
    padding: 20px 28px;
    border-radius: var(--dj-radius-lg);
    box-shadow: var(--dj-shadow-card);
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-smile-img img {
    width: 48px;
    height: 48px;
}

.faq-patients-content h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dj-text-primary);
    margin: 0;
}

.faq-patients-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-info .accordion-item {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-info .accordion-item:hover {
    border-color: var(--dj-primary) !important;
}

.faq-info .accordion-button {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dj-text-primary) !important;
    background: transparent !important;
    border: none;
    box-shadow: none !important;
}

.faq-info .accordion-button:not(.collapsed) {
    background: rgba(0, 102, 255, 0.1) !important;
    color: var(--dj-primary) !important;
}

.faq-info .accordion-button::after {
    filter: invert(1);
}

.faq-info .accordion-body {
    padding: 0 24px 20px;
    background: transparent !important;
}

.faq-info .accordion-content p {
    font-size: 15px;
    color: var(--dj-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-info .accordion-collapse {
    background: transparent !important;
}

/* ===== FEEDBACK SECTION ===== */
.feedback-section-thirteen {
    padding: 100px 0;
    background: var(--dj-gradient-dark-surface) !important;
    position: relative;
    overflow: hidden;
}

.feedback-section-thirteen::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
}

.feedback-main-thirteen {
    position: relative;
    z-index: 10;
}

.feedback-all-img img {
    border-radius: var(--dj-radius-xl);
    box-shadow: var(--dj-shadow-card);
}

.feedback-main-content {
    position: relative;
    z-index: 10;
}

.feedback-main-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dj-text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feedback-main-content p {
    font-size: 16px;
    color: var(--dj-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feedback-inner-img {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feedback-inner-img a img {
    height: 50px;
    transition: all 0.3s ease;
}

.feedback-inner-img a:hover img {
    transform: translateY(-4px);
}

.feedback-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--dj-gradient-dark) !important;
    position: relative;
    overflow: hidden;
    padding-top: 45px;
}

.breadcrumb-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 50%);
}

.breadcrumb-title {
    color: var(--dj-text-primary) !important;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-top: 16px;
}

.page-breadcrumb .breadcrumb {
    justify-content: center;
    background: transparent !important;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--dj-text-secondary) !important;
}

.page-breadcrumb .breadcrumb-item a i {
    color: var(--dj-text-secondary) !important;
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--dj-secondary) !important;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: var(--dj-text-muted) !important;
}

.breadcrumb-bg {
    opacity: 0.3;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--dj-gradient-dark-surface) !important;
}

.contact-inner-header h6 {
    background: var(--dj-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-lg);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--dj-primary) !important;
    transform: translateX(8px);
}

.contact-card .card-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: transparent !important;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--dj-gradient-primary);
    border-radius: var(--dj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--dj-text-primary);
    font-size: 24px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dj-text-primary);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--dj-text-secondary);
    margin: 0;
}

.contact-form-card {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-xl);
}

.contact-form-card .card-body {
    padding: 32px;
    background: transparent !important;
}

/* ===== FORMS ===== */
.form-control,
.form-select {
    padding: 14px 16px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-sm);
    color: var(--dj-text-primary) !important;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: var(--dj-text-muted) !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--dj-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2) !important;
    color: var(--dj-text-primary) !important;
}

.form-select option {
    background: var(--dj-dark-surface);
    color: var(--dj-text-primary);
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dj-text-primary);
    margin-bottom: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--dj-gradient-primary) !important;
    border: none !important;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--dj-radius-sm);
    transition: all 0.3s ease;
    color: var(--dj-text-primary) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

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

.btn-outline-primary:hover {
    background: var(--dj-primary) !important;
    color: var(--dj-text-primary) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--dj-text-primary) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* ===== FOOTER ===== */
.footer.footer-thirteen {
    background: var(--dj-dark-surface) !important;
    color: var(--dj-text-secondary);
    position: relative;
    overflow: hidden;
}

.footer.footer-thirteen::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-title {
    color: var(--dj-text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.footer-menu ul li a {
    color: var(--dj-text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--dj-secondary);
    padding-left: 8px;
}

.footer-contents-thirteen-main {
    background: var(--dj-dark-card);
    border: 1px solid var(--dj-dark-border);
    border-radius: var(--dj-radius-lg);
    padding: 32px;
    margin-top: 40px;
}

.subscribe-form form {
    display: flex;
    gap: 12px;
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--dj-dark-border) !important;
    color: var(--dj-text-primary) !important;
    padding: 14px 20px;
    border-radius: var(--dj-radius-sm);
}

.subscribe-form .form-control::placeholder {
    color: var(--dj-text-muted);
}

.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--dj-primary) !important;
}

.subscribe-form .btn-primary {
    padding: 14px 28px;
    white-space: nowrap;
}

.social-icon ul {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icon ul li a {
    width: 44px;
    height: 44px;
    background: var(--dj-dark-card);
    border: 1px solid var(--dj-dark-border);
    border-radius: var(--dj-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dj-text-primary);
    transition: all 0.3s ease;
}

.social-icon ul li a:hover {
    background: var(--dj-gradient-primary);
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid var(--dj-dark-border);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.copyright-text p {
    color: var(--dj-text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    pointer-events: none;
}

/* ===== CARDS ===== */
.card {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    border-radius: var(--dj-radius-lg);
    box-shadow: var(--dj-shadow-card);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.card-body {
    background: transparent !important;
}

/* ===== ALERTS ===== */
.alert {
    border-radius: var(--dj-radius-md);
    padding: 16px 20px;
    border: none;
    background: var(--dj-dark-card) !important;
    color: var(--dj-text-primary) !important;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    color: var(--dj-success) !important;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: var(--dj-danger) !important;
}

.alert-info {
    background: rgba(0, 102, 255, 0.15) !important;
    border: 1px solid rgba(0, 102, 255, 0.3) !important;
    color: var(--dj-primary) !important;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    color: var(--dj-warning) !important;
}

.alert-light {
    background: var(--dj-dark-card) !important;
    border: 1px solid var(--dj-dark-border) !important;
    color: var(--dj-text-secondary) !important;
}

/* ===== TEXT UTILITIES ===== */
.text-muted {
    color: var(--dj-text-muted) !important;
}

.text-gradient {
    background: var(--dj-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dj-text-primary);
}

p {
    color: var(--dj-text-secondary);
}

a {
    color: var(--dj-primary);
}

a:hover {
    color: var(--dj-secondary);
}

/* ===== MOUSE CURSOR ===== */
.mouse-cursor {
    border-color: var(--dj-primary) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    .about-section,
    .why-choose-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

    .way-bg {
        padding: 40px;
    }

    .feedback-section-thirteen {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {

    .about-section,
    .why-choose-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 40px 0;
    }

    .way-bg {
        padding: 30px;
    }

    .footer-top {
        padding: 40px 0 20px;
    }

    .subscribe-form form {
        flex-direction: column;
    }

    .social-icon ul {
        justify-content: center;
        margin-top: 20px;
    }

    .faq-patients-count {
        right: 0;
        bottom: -20px;
    }
}

/* ===== DARK MODE OVERRIDE ===== */
.dark-mode footer,
.dark-mode .footer {
    background: var(--dj-dark-surface) !important;
}

.main-nav {
    gap: 1rem;
}

/* ===== PAGE BODY CONTENT ===== */
.page-body {
    color: var(--dj-text-secondary);
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    color: var(--dj-text-primary);
    margin-bottom: 16px;
}

.page-body p {
    margin-bottom: 16px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.page-body a {
    color: var(--dj-primary);
}

.page-body a:hover {
    color: var(--dj-secondary);
}

/* ===== CONTACT MAP ===== */
.contact-map iframe {
    filter: invert(0.9) hue-rotate(180deg);
    opacity: 0.8;
}

.header.inner-header.header-fixed {
    background: var(--dj-dark-surface);
}

.header.inner-header .header-nav {
    background: var(--dj-dark-surface);
}

.header .header-nav {
    background: var(--dj-dark-surface);
}

.footer.footer-thirteen .footer-bottom .copyright {
    border: none !important;
}

.feedback-all-img img {
    box-shadow: none !important;
}

.faq-img>img {
    background: var(--dj-gradient-primary);
}

.faq-patients-count {
    background: var(--dj-gradient-dark-surface);
}

/* ===== HEADER FIXED HEIGHT & LOGO SIZING ===== */
/* Sabit header yüksekliği - Logo büyütülse bile menü aşağı kaymaz */
.header {
    height: 80px;
}

.header .header-nav {
    height: 80px;
    padding: 0;
}

.header .navbar-header {
    height: 80px;
    display: flex;
    align-items: center;
}

.header .navbar-brand.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.header .navbar-brand.logo img {
    /* İstediğiniz logo boyutunu buradan ayarlayın */
    width: 256px;
    object-fit: contain;
}

.header .main-menu-wrapper {
    display: flex;
    align-items: center;
    height: 65px;
}

.header .main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .main-nav>li {
    display: flex;
    align-items: center;
    height: 100%;
}

.header .main-nav>li>a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.header .header-navbar-rht {
    display: flex;
    align-items: center;
    height: 65px;
}

.header .header-navbar-rht>li {
    display: flex;
    align-items: center;
}

/* Mobil menü için */
@media (max-width: 991px) {
    .header {
        height: 70px;
    }

    .header .header-nav,
    .header .navbar-header {
        height: 70px;
    }
    .header .navbar-brand.logo{
        display: block;
        height: auto;
    }

    .header .navbar-brand.logo img {
        height: auto;
        width: 256px;
        margin-top: -10px;
        margin-left: 30px;
    }
    .footer-thirteen .col-lg-3 {
        flex: 0 0 auto;
        width: 50%;
    }
    .feedback-section-thirteen::before{
        background:none;
    }
    .footer-title{
        border-bottom: 1px solid var(--dj-dark-border);
        line-height: 40px;
    }
    .fa-rocket{
        line-height: 40px;
    }
}

.breadcrumb-bar .container {
    margin-top: 50px;
}

.mobile-header-menu{
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: var(--dj-gradient-dark-surface);
    opacity: 0.99;
}
.mobile-menu-header{
    background: var(--dj-dark) !important;
    border-bottom: 1px solid var(--dj-dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-logo img {
    width: auto;
    max-height: 70px;
}
.mobile-main-menu-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.mobile-main-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    justify-content: space-evenly;
    width: 100%;
}
.mobile-main-nav li{
    text-align: center;
    line-height: 30px;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--dj-dark-border);
    padding: 20px;
}
.mobile-main-nav li a{
    color:var(--text-light) !important;
}
#mobile-menu_close{
    position: fixed;
    top: 5px;
    right: 20px;
    font-size: 36px;
}
.btn-mobile-login{
    position: fixed !important;
    bottom: 0;
    width: 100%;
    border-radius: 10px 10px 0px 0px !important;
    height: 50px;
}
