/* ========================================
   DIETAPP - TANITIM WEB SİTESİ STİLLERİ
   ======================================== */

:root {
    /* Diyetisyen Teması - Sağlık ve Doğa Renkleri */
    --primary-color: #2d8659;
    --primary-hover: #1f5f3f;
    --secondary-color: #4a9d8e;
    --secondary-hover: #3a7a6f;
    --accent-color: #6bb6ff;
    --accent-hover: #4a9eff;
    --success-color: #7cb342;
    --success-hover: #689f38;
    --warning-color: #ffb74d;
    --warning-hover: #ff9800;
    --danger-color: #e57373;
    --danger-hover: #ef5350;
    --info-color: #64b5f6;
    --info-hover: #42a5f5;
    
    /* Neutral Colors - Yumuşak Tonlar */
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #34495e;
    --text-light: #7f8c8d;
    --border-color: #e8f5e8;
    --white: #ffffff;
    
    /* Soft Shadows - Yumuşak Gölgeler */
    --shadow-sm: 0 2px 4px rgba(45, 134, 89, 0.08);
    --shadow: 0 4px 6px -1px rgba(45, 134, 89, 0.1), 0 2px 4px -1px rgba(45, 134, 89, 0.06);
    --shadow-md: 0 8px 15px -3px rgba(45, 134, 89, 0.12), 0 4px 6px -2px rgba(45, 134, 89, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(45, 134, 89, 0.15), 0 10px 10px -5px rgba(45, 134, 89, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(45, 134, 89, 0.2);
    --shadow-2xl: 0 35px 60px -12px rgba(45, 134, 89, 0.25);
    
    /* Doğa Temalı Gradients */
    --gradient-primary: linear-gradient(135deg, #2d8659 0%, #4a9d8e 50%, #7cb342 100%);
    --gradient-secondary: linear-gradient(135deg, #4a9d8e 0%, #6bb6ff 50%, #64b5f6 100%);
    --gradient-accent: linear-gradient(135deg, #6bb6ff 0%, #64b5f6 50%, #4a9d8e 100%);
    --gradient-success: linear-gradient(135deg, #7cb342 0%, #8bc34a 50%, #aed581 100%);
    --gradient-warning: linear-gradient(135deg, #ffb74d 0%, #ffcc80 50%, #ffe0b2 100%);
    --gradient-danger: linear-gradient(135deg, #e57373 0%, #ef9a9a 50%, #ffcdd2 100%);
    --gradient-info: linear-gradient(135deg, #64b5f6 0%, #90caf9 50%, #bbdefb 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #7f8c8d 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #e0f2f1 100%);
    
    /* Soft Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(45, 134, 89, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(45, 134, 89, 0.15);
}

/* ========================================
   GENEL YAPILANDIRMA
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 25%, #e0f2f1 50%, #f1f8e9 75%, #e8f5e8 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Gradient Overlay */
        radial-gradient(circle at 20% 80%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 157, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 182, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(124, 179, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

/* Arkaplan ikonları kaldırıldı */

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Basit şeffaf noktalar */
        radial-gradient(circle 12px at 15% 25%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle 8px at 85% 20%, rgba(74, 157, 142, 0.12) 0%, transparent 50%),
        radial-gradient(circle 15px at 20% 75%, rgba(124, 179, 66, 0.10) 0%, transparent 50%),
        radial-gradient(circle 10px at 80% 80%, rgba(100, 181, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle 14px at 50% 45%, rgba(255, 183, 77, 0.12) 0%, transparent 50%),
        radial-gradient(circle 6px at 70% 30%, rgba(45, 134, 89, 0.10) 0%, transparent 50%),
        radial-gradient(circle 11px at 30% 60%, rgba(74, 157, 142, 0.08) 0%, transparent 50%),
        radial-gradient(circle 9px at 90% 70%, rgba(124, 179, 66, 0.09) 0%, transparent 50%),
        radial-gradient(circle 13px at 10% 90%, rgba(100, 181, 246, 0.11) 0%, transparent 50%),
        radial-gradient(circle 7px at 60% 10%, rgba(255, 183, 77, 0.09) 0%, transparent 50%);
    background-size: 300px 300px, 250px 250px, 280px 280px, 260px 260px, 290px 290px, 
                     240px 240px, 270px 270px, 230px 230px, 310px 310px, 220px 220px;
    background-position: 
        15% 25%, 85% 20%, 20% 75%, 80% 80%, 50% 45%, 
        70% 30%, 30% 60%, 90% 70%, 10% 90%, 60% 10%;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: floatIcons 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-10px); }
}

/* Diyetisyen Temalı İkon Animasyonu */
@keyframes floatIcons {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-8px) rotate(-1deg);
        opacity: 0.06;
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.10;
    }
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-image:hover img {
    transform: translateY(-20px) scale(1.05) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
    border-radius: 32px;
}

.feature-card:hover::before {
    opacity: 0.1;
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Her kart için farklı renk */
.feature-card:nth-child(1) .feature-icon::before {
    background: var(--gradient-primary);
}

.feature-card:nth-child(2) .feature-icon::before {
    background: var(--gradient-secondary);
}

.feature-card:nth-child(3) .feature-icon::before {
    background: var(--gradient-accent);
}

.feature-card:nth-child(4) .feature-icon::before {
    background: var(--gradient-success);
}

.feature-card:nth-child(5) .feature-icon::before {
    background: var(--gradient-warning);
}

.feature-card:nth-child(6) .feature-icon::before {
    background: var(--gradient-danger);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

/* ========================================
   FEATURE DETAIL CARDS
   ======================================== */

.feature-detail-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 134, 89, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 134, 89, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-detail-card:hover::after {
    transform: scaleX(1);
}

.feature-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
    border-radius: 24px;
}

.feature-detail-card:hover::before {
    opacity: 0.03;
}

.feature-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(45, 134, 89, 0.2);
    border-color: var(--primary-color);
}

.feature-detail-card > * {
    position: relative;
    z-index: 1;
}

.feature-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 20px 20px 0 0;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(74, 157, 142, 0.1) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-detail-card:hover .feature-image::before {
    opacity: 0.8;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.feature-detail-card:hover .feature-image img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.feature-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.02) 0%, rgba(74, 157, 142, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0 0 20px 20px;
}

.feature-detail-card:hover .feature-content::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feature-icon i {
    position: relative;
    z-index: 1;
}

/* Her kart için farklı renk */
.feature-detail-card:nth-child(1) .feature-icon::before {
    background: var(--gradient-primary);
}

.feature-detail-card:nth-child(2) .feature-icon::before {
    background: var(--gradient-secondary);
}

.feature-detail-card:nth-child(3) .feature-icon::before {
    background: var(--gradient-accent);
}

.feature-detail-card:nth-child(4) .feature-icon::before {
    background: var(--gradient-success);
}

.feature-detail-card:nth-child(5) .feature-icon::before {
    background: var(--gradient-warning);
}

.feature-detail-card:nth-child(6) .feature-icon::before {
    background: var(--gradient-danger);
}

.feature-detail-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.feature-content h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-detail-card:hover .feature-content h4 {
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-detail-card:hover .feature-description {
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    border-radius: 8px;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    background: rgba(45, 134, 89, 0.05);
    padding-left: 0.75rem;
}

.feature-list li:hover::before {
    transform: scaleY(1);
}

.feature-list li i {
    font-size: 1rem;
    color: var(--success-color);
    transition: all 0.3s ease;
}

.feature-list li:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
}

.section-icon i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: white !important;
}

.section-header:hover .section-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-secondary);
}

/* Admin Panel Icon - Yeşil */
.section-header:first-of-type .section-icon {
    background: var(--gradient-primary);
}

.section-header:first-of-type:hover .section-icon {
    background: var(--gradient-secondary);
}

/* Patient Panel Icon - Yeşil */
.section-header:last-of-type .section-icon {
    background: var(--gradient-success);
}

.section-header:last-of-type:hover .section-icon {
    background: var(--gradient-accent);
}

/* ========================================
   SCREENSHOT CARDS (LEGACY)
   ======================================== */

.screenshot-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid var(--border-color);
}

.screenshot-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.screenshot-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.screenshot-card:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: white;
}

.screenshot-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   PRICING CARDS
   ======================================== */

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--glass-border);
    position: relative;
    height: 100%;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
    border-radius: 32px;
}

.pricing-card:hover::before {
    opacity: 0.08;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-20px) scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 255, 255, 0.4);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-20px) rotate(1deg);
    box-shadow: var(--shadow-2xl);
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.pricing-header h4 {
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.pricing-card:hover .pricing-header h4 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.price {
    margin-bottom: 3rem;
    position: relative;
}

.currency {
    font-size: 1.75rem;
    vertical-align: top;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.pricing-card:hover .amount {
    transform: scale(1.05);
}

.period {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.pricing-card:hover .period {
    opacity: 1;
    transform: translateY(-2px);
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.pricing-body li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: all 0.4s ease;
    font-weight: 600;
}

.pricing-body li:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.pricing-body li i {
    font-size: 1.4rem;
    color: var(--success-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pricing-body li:hover i {
    transform: scale(1.3) rotate(5deg);
    color: var(--primary-color);
}

/* ========================================
   CONTACT CARDS
   ======================================== */

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(45, 134, 89, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8f5e8;
    position: relative;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.15);
    border-color: #2d8659;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.3);
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d8659;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-card:hover h5 {
    color: #1f5f3f;
}

.contact-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-card:hover p {
    color: #2d8659;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    border-radius: 16px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60px;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Buton içindeki ikonların hizalanması */
.btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

.btn .me-2 {
    margin-right: 0.5rem;
}

/* Navbar butonları için özel stil */
.navbar .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    height: auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero section buton container */
.hero-section .d-flex {
    align-items: stretch;
    gap: 1rem;
}

.hero-section .btn {
    flex: 1;
    min-width: 200px;
    white-space: nowrap;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    position: relative;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.display-4, .display-5 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */

.social-links a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .feature-card,
    .pricing-card,
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .screenshot-card img {
        height: 200px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
        height: 50px;
    }
    
    .btn-primary, .btn-outline-primary {
        height: 50px;
    }
    
    .hero-section .btn {
        min-width: 150px;
        flex: none;
        height: 50px;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Navbar butonları mobil */
    .navbar .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-height: 32px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .pricing-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.rounded-3 {
    border-radius: 1rem !important;
}

/* ========================================
   LOADING ANIMATIONS
   ======================================== */

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ========================================
   MODAL STYLES
   ======================================== */

.image-modal,
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modal-caption {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    color: #666;
}

.demo-content {
    text-align: center;
    max-width: 500px;
}

.demo-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.demo-content p {
    margin-bottom: 2rem;
    color: #666;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* ========================================
   MOCKUP STYLES - KOD İLE OLUŞTURULMUŞ ŞABLONLAR
   ======================================== */

/* Dashboard Mockup */
.dashboard-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-nav {
    display: flex;
    gap: 16px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mockup-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.stat-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 6px;
    color: white;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 14px;
    font-weight: 700;
    color: #2d8659;
    line-height: 1;
}

.stat-label {
    font-size: 8px;
    color: #6c757d;
    line-height: 1;
    margin-top: 2px;
}

.chart-area {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.chart-title {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    margin-bottom: 8px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 40px;
    gap: 4px;
}

.bar {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 2px 2px 0 0;
    width: 8px;
    min-height: 4px;
    transition: all 0.3s ease;
    animation: barGrow 1.5s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-height, 60%); }
}

/* Patient Panel Mockup */
.patient-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.patient-header {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.patient-nav {
    display: flex;
    gap: 16px;
}

.patient-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.profile-info h6 {
    font-size: 12px;
    font-weight: 600;
    color: #2d8659;
    margin: 0;
    line-height: 1;
}

.profile-info p {
    font-size: 10px;
    color: #6c757d;
    margin: 2px 0 0 0;
    line-height: 1;
}

.progress-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.progress-title {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    margin-bottom: 8px;
    text-align: center;
}

.progress-bar {
    background: #e9ecef;
    border-radius: 4px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    height: 100%;
    width: 65%;
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 65%; }
}

/* Message Mockup */
.message-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.message-header {
    background: linear-gradient(135deg, #6bb6ff 0%, #64b5f6 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.message-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6bb6ff 0%, #64b5f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.message-bubble {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 8px 12px;
    max-width: 70%;
    border: 1px solid rgba(107, 182, 255, 0.1);
}

.message-text {
    font-size: 10px;
    color: #2d8659;
    margin: 0;
    line-height: 1.3;
}

.message-time {
    font-size: 8px;
    color: #6c757d;
    margin-top: 2px;
}

.message-input {
    display: flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(107, 182, 255, 0.1);
}

.message-input input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 10px;
    color: #2d8659;
}

.message-input input::placeholder {
    color: #6c757d;
}

.send-btn {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6bb6ff 0%, #64b5f6 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

/* Diet Program Mockup */
.diet-program-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.program-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.program-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 8px;
    color: white;
}

.program-info {
    flex: 1;
}

.program-name {
    font-size: 12px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.program-duration {
    font-size: 10px;
    color: #6c757d;
    margin-top: 2px;
}

.program-status {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.program-status.active {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    color: white;
}

.program-status:not(.active) {
    background: #e9ecef;
    color: #6c757d;
}

/* Appointment Mockup */
.appointment-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.appointment-calendar {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.calendar-date {
    font-size: 12px;
    font-weight: 600;
    color: #2d8659;
}

.calendar-stats {
    font-size: 10px;
    color: #6c757d;
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    padding: 6px 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.appointment-time {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    min-width: 35px;
}

.appointment-info {
    flex: 1;
}

.appointment-name {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.appointment-type {
    font-size: 8px;
    color: #6c757d;
    margin-top: 1px;
}

.appointment-status {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
}

.appointment-status.confirmed {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    color: white;
}

.appointment-status.pending {
    background: linear-gradient(135deg, #ffb74d 0%, #ffcc80 100%);
    color: white;
}

/* Reports Mockup */
.reports-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.reports-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.report-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.report-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 6px;
    color: white;
}

.report-info {
    flex: 1;
}

.report-title {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.report-value {
    font-size: 12px;
    font-weight: 700;
    color: #2d8659;
    line-height: 1;
    margin-top: 2px;
}

/* Accounting Mockup */
.accounting-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.accounting-summary {
    padding: 16px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(45, 134, 89, 0.1);
}

.summary-item {
    flex: 1;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.summary-label {
    font-size: 10px;
    color: #6c757d;
    margin-bottom: 4px;
}

.summary-value {
    font-size: 14px;
    font-weight: 700;
}

.summary-value.positive {
    color: #7cb342;
}

.summary-value.pending {
    color: #ffb74d;
}

.transaction-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    padding: 6px 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.transaction-icon {
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    border-radius: 4px;
    color: white;
}

.transaction-info {
    flex: 1;
}

.transaction-name {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.transaction-date {
    font-size: 8px;
    color: #6c757d;
    margin-top: 1px;
}

.transaction-amount {
    font-size: 10px;
    font-weight: 700;
    color: #7cb342;
}

/* Food Database Mockup */
.food-database-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.search-section {
    padding: 16px;
    border-bottom: 1px solid rgba(45, 134, 89, 0.1);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 6px 12px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.search-icon {
    font-size: 12px;
    color: #6c757d;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 10px;
    color: #2d8659;
}

.search-input::placeholder {
    color: #6c757d;
}

.food-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.food-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    padding: 6px 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.food-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 4px;
    color: white;
}

.food-info {
    flex: 1;
}

.food-name {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.food-calories {
    font-size: 8px;
    color: #6c757d;
    margin-top: 1px;
}

.food-macros {
    display: flex;
    gap: 4px;
}

.macro {
    font-size: 8px;
    color: #6c757d;
    background: rgba(45, 134, 89, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Profile Mockup */
.profile-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.profile-form {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
}

.form-input {
    font-size: 10px;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 4px;
    padding: 4px 8px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

/* Weight Tracking Mockup - Yeniden Tasarım */
.weight-tracking-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(45, 134, 89, 0.15);
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.mockup-header {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-nav {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mockup-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.weight-input-section {
    text-align: center;
    margin-bottom: 16px;
}

.weight-input {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2d8659;
    width: 100%;
    max-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.weight-input:focus {
    outline: none;
    border-color: #2d8659;
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.weight-stats {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weight-chart {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(45, 134, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d8659;
    margin-bottom: 12px;
    text-align: center;
}

.chart-line {
    position: relative;
    height: 60px;
    background: linear-gradient(90deg, 
        rgba(45, 134, 89, 0.1) 0%, 
        rgba(74, 157, 142, 0.1) 50%, 
        rgba(45, 134, 89, 0.1) 100%);
    border-radius: 8px;
    overflow: hidden;
}

.line-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2d8659;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(45, 134, 89, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.line-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: rgba(45, 134, 89, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Measurements Mockup */
.measurements-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.measurements-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.measurement-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.measurement-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    border-radius: 6px;
    color: white;
}

.measurement-info {
    flex: 1;
}

.measurement-name {
    font-size: 10px;
    font-weight: 600;
    color: #2d8659;
    line-height: 1;
}

.measurement-value {
    font-size: 12px;
    font-weight: 700;
    color: #7cb342;
    line-height: 1;
    margin-top: 2px;
}

/* Login Mockup */
.login-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 14px;
    color: #6c757d;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.login-btn {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn.primary {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    color: white;
}

.login-btn.secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2d8659;
    border: 1px solid rgba(45, 134, 89, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
}

/* Progress Photos Mockup */
.progress-photos-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.photos-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.photo-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.photo-placeholder {
    font-size: 24px;
    margin-bottom: 4px;
}

.photo-date {
    font-size: 10px;
    color: #6c757d;
    font-weight: 500;
}

/* Patient Appointments Mockup */
.patient-appointments-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

/* Patient Messages Mockup */
.patient-messages-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.message-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Patient Food Database Mockup */
.patient-food-database-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

/* Fixed Sidebar */
.fixed-sidebar {
    position: fixed;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.fixed-sidebar.open {
    right: 0;
}

.sidebar-toggle {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 50px;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-radius: 25px 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: -4px 0 15px rgba(45, 134, 89, 0.3);
    transition: all 0.3s ease;
}

.toggle-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.sidebar-toggle:hover {
    background: linear-gradient(135deg, #1f5f3f 0%, #3a7a6f 100%);
    transform: translateY(-50%) scale(1.05);
}

.sidebar-content {
    width: 300px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px 0 0 20px;
    box-shadow: -8px 0 32px rgba(45, 134, 89, 0.15);
    border: 1px solid rgba(45, 134, 89, 0.1);
    overflow: hidden;
}

.sidebar-header {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.sidebar-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ea952 0%, #0f6b5f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.form-btn {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.form-btn:hover {
    background: linear-gradient(135deg, #1f5f3f 0%, #3a7a6f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
    color: white;
}

.action-btn i {
    font-size: 18px;
}

/* Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(45, 134, 89, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    border: none;
}

.modal-title {
    font-weight: 600;
    color: white;
}

.modal-body {
    padding: 24px;
}

.form-label {
    font-weight: 600;
    color: #2d8659;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2d8659;
    box-shadow: 0 0 0 0.2rem rgba(45, 134, 89, 0.25);
}

.modal-footer {
    border: none;
    padding: 16px 24px 24px;
}

.btn-primary {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* .btn-primary:hover removed for newsletter section */

.btn-secondary {
    background: #f8f9fa;
    border: 2px solid #e8f5e8;
    color: #2d8659;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e8f5e8;
    border-color: #2d8659;
    color: #1f5f3f;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .fixed-sidebar {
        right: -280px;
    }
    
    .sidebar-content {
        width: 280px;
    }
    
    .sidebar-toggle {
        left: -100px;
        width: 100px;
        height: 45px;
    }
    
    .toggle-text {
        font-size: 12px;
    }
}

/* Tab Feature Card */
.tab-feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 134, 89, 0.12);
    border: 1px solid rgba(45, 134, 89, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    min-height: 400px;
}

.tab-feature-image {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.tab-feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(74, 157, 142, 0.05) 100%);
    z-index: 1;
}

.tab-feature-image > * {
    position: relative;
    z-index: 2;
}

.tab-feature-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.tab-feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.02) 0%, rgba(74, 157, 142, 0.02) 100%);
    z-index: 1;
}

.tab-feature-content > * {
    position: relative;
    z-index: 2;
}

.tab-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
    transition: all 0.3s ease;
}

.tab-feature-header h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d8659;
    margin: 0;
}

.tab-feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.tab-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #2d8659;
    font-weight: 500;
}

.tab-feature-list li i {
    color: #7cb342;
    font-size: 1.1rem;
}

/* Tab System */
.admin-tabs-container {
    margin-bottom: 2rem;
}

.admin-tabs {
    border-bottom: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-tabs .nav-item {
    margin: 0;
}

.admin-tabs .nav-link {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid rgba(45, 134, 89, 0.1);
    border-radius: 12px;
    color: #2d8659;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    margin: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-tabs .nav-link:hover {
    background: linear-gradient(145deg, #e8f5e8 0%, #d4edda 100%);
    border-color: rgba(45, 134, 89, 0.3);
    color: #1f5f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

.admin-tabs .nav-link.active {
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    border-color: #2d8659;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.admin-tabs .nav-link i {
    font-size: 16px;
}

.admin-tab-content {
    margin-top: 2rem;
}

.admin-tab-content .tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Patient Panel Tabs */
.patient-tabs-container {
    margin-bottom: 2rem;
}

.patient-tabs {
    border-bottom: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.patient-tabs .nav-item {
    margin: 0;
}

.patient-tabs .nav-link {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid rgba(124, 179, 66, 0.1);
    border-radius: 12px;
    color: #7cb342;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    margin: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.patient-tabs .nav-link:hover {
    background: linear-gradient(145deg, #e8f5e8 0%, #d4edda 100%);
    border-color: rgba(124, 179, 66, 0.3);
    color: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
}

.patient-tabs .nav-link.active {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    border-color: #7cb342;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.patient-tabs .nav-link i {
    font-size: 16px;
}

.patient-tab-content {
    margin-top: 2rem;
}

.patient-tab-content .tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsive Tab Cards */
@media (max-width: 992px) {
    .tab-feature-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .tab-feature-image {
        flex: none;
        min-height: 300px;
    }
    
    .tab-feature-content {
        flex: none;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .tab-feature-content {
        padding: 1.5rem;
    }
    
    .tab-feature-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .tab-feature-header h4 {
        font-size: 1.5rem;
    }
    
    .tab-feature-description {
        font-size: 1rem;
    }
    
    .tab-feature-list li {
        font-size: 0.95rem;
    }
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .admin-tabs, .patient-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-tabs .nav-link, .patient-tabs .nav-link {
        font-size: 12px;
        padding: 8px 12px;
        min-width: auto;
    }
    
    .admin-tabs .nav-link i, .patient-tabs .nav-link i {
        font-size: 14px;
    }
}

/* Responsive Mockups */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 6px;
    }
    
    .stat-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 12px;
    }
    
    .stat-label {
        font-size: 7px;
    }
}

/* Enhanced Mobile Optimizations for System Features */
@media (max-width: 992px) {
    /* Tab navigation mobile */
    .admin-tabs, .patient-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .admin-tabs::-webkit-scrollbar, .patient-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .admin-tabs .nav-link, .patient-tabs .nav-link {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 16px;
        margin-right: 8px;
        border-radius: 25px;
    }
    
    .admin-tabs .nav-link i, .patient-tabs .nav-link i {
        font-size: 15px;
        margin-right: 6px;
    }
    
    /* Tab feature cards mobile */
    .tab-feature-card {
        flex-direction: column;
        min-height: auto;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-feature-image {
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
        margin-bottom: 0;
    }
    
    .tab-feature-content {
        width: 100%;
        padding: 1.5rem;
        border-radius: 0 0 16px 16px;
    }
    
    .tab-feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .tab-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .tab-feature-header h4 {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .tab-feature-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .tab-feature-list {
        margin: 0;
    }
    
    .tab-feature-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .tab-feature-list li i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Section headers mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .section-icon i {
        font-size: 1.5rem;
    }
    
    /* Tab containers mobile */
    .admin-tabs-container, .patient-tabs-container {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    /* Tab navigation smaller mobile */
    .admin-tabs, .patient-tabs {
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .admin-tabs .nav-link, .patient-tabs .nav-link {
        font-size: 11px;
        padding: 6px 12px;
        margin-right: 6px;
        border-radius: 20px;
        min-width: auto;
    }
    
    .admin-tabs .nav-link i, .patient-tabs .nav-link i {
        font-size: 13px;
        margin-right: 4px;
    }
    
    /* Tab content mobile */
    .admin-tab-content, .patient-tab-content {
        padding: 0 10px;
    }
    
    /* Tab feature cards smaller mobile */
    .tab-feature-card {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    
    .tab-feature-image {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .tab-feature-content {
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    
    .tab-feature-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .tab-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .tab-feature-header h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .tab-feature-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .tab-feature-list li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        line-height: 1.3;
    }
    
    .tab-feature-list li i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    /* Extra small mobile */
    .section-header {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-icon i {
        font-size: 1.25rem;
    }
    
    .admin-tabs-container, .patient-tabs-container {
        padding: 0 5px;
    }
    
    .admin-tabs .nav-link, .patient-tabs .nav-link {
        font-size: 10px;
        padding: 5px 10px;
        margin-right: 4px;
        border-radius: 18px;
    }
    
    .admin-tabs .nav-link i, .patient-tabs .nav-link i {
        font-size: 12px;
        margin-right: 3px;
    }
    
    .tab-feature-card {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .tab-feature-image {
        height: 160px;
    }
    
    .tab-feature-content {
        padding: 0.75rem;
    }
    
    .tab-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tab-feature-header h4 {
        font-size: 1rem;
    }
    
    .tab-feature-description {
        font-size: 0.8rem;
    }
    
    .tab-feature-list li {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    
    .tab-feature-list li i {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* Very small mobile */
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .admin-tabs .nav-link, .patient-tabs .nav-link {
        font-size: 9px;
        padding: 4px 8px;
        margin-right: 3px;
    }
    
    .admin-tabs .nav-link i, .patient-tabs .nav-link i {
        font-size: 11px;
        margin-right: 2px;
    }
    
    .tab-feature-card {
        padding: 0.5rem;
    }
    
    .tab-feature-image {
        height: 140px;
    }
    
    .tab-feature-content {
        padding: 0.5rem;
    }
    
    .tab-feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .tab-feature-header h4 {
        font-size: 0.9rem;
    }
    
    .tab-feature-description {
        font-size: 0.75rem;
    }
    
    .tab-feature-list li {
        font-size: 0.7rem;
        padding: 0.25rem 0;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: #ffffff !important;
    border-top: 3px solid #2d8659;
}

footer h5, footer h6 {
    color: #ffffff !important;
    font-weight: 700;
}

footer p {
    color: #e0e0e0 !important;
    line-height: 1.6;
}

footer .text-muted {
    color: #b0b0b0 !important;
    transition: all 0.3s ease;
}

/* footer .text-muted:hover removed */

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

/* footer ul li a:hover removed */

footer .bi {
    color: #2d8659;
    font-size: 1.1rem;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2d8659 0%, #4a9d8e 100%);
    color: white !important;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

/* footer .social-links a:hover removed */

footer .social-links a i {
    color: white !important;
    font-size: 1.1rem;
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-lg-4, footer .col-lg-2, footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    footer h5, footer h6 {
        font-size: 1.1rem;
    }
    
    footer p {
        font-size: 0.9rem;
    }
    
    footer ul li a {
        font-size: 0.9rem;
    }
    
    footer .social-links a {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
}
