/* ====================================
   CSS VARIABLES & RESET
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #1e3a5f;
    --primary-dark: #152b48;
    --primary-light: #2a5f8c;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #bacfed;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
    --success-color: #10b981;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ====================================
   NAVIGATION BAR
   ==================================== */
.navbar {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-xs) 0;
    transition: all var(--transition-base);
    overflow-x: hidden;
    max-width: 100vw;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-md); 
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: var(--font-weight-bold);
    color: var(--bg-white);
    text-decoration: none;
    transition: color var(--transition-base);
}

.nav-brand-text p {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.navbar.scrolled .nav-brand {
    color: var(--primary-color);
}

.nav-brand:hover {
    opacity: 0.9;
}

.nav-logo {
    height: 80px;
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.nav-brand i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    flex-grow: 1;
    justify-content: center;
    margin: 0; 
}

.nav-menu a {
    text-decoration: none;
    color: var(--bg-white);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-xs);
    border-radius: var(--radius-md);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover {
    opacity: 0.7;
}

.navbar.scrolled .nav-menu a:hover {
    opacity: 0.7;
}

.header-saglik-bakanligi {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: auto;
}

.saglik-bakanligi-logo {
    height: 80px;
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.saglik-bakanligi-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--bg-white);
    text-align: right;
    max-width: 140px;
}

.navbar.scrolled .saglik-bakanligi-text {
    color: var(--text-dark);
}

.saglik-bakanligi-text p {
    margin: 0;
    padding: 0;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(30, 64, 175, 0.3) 100%),
                url('../img/hero-background.jpg') center/cover;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: calc(var(--spacing-2xl) + 80px) 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    opacity: 0.9;
}

.feature-item i {
    font-size: 1.25rem;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--bg-white);
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-section {
    padding: calc(var(--spacing-2xl) - 1rem) 0;
    background-color: var(--bg-white);
}

.services-section h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: 8rem;
}

.service-content {
    padding: var(--spacing-lg);
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--border-color);
    background: var(--bg-white);
}

.featured-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--bg-white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--accent-color);
}

.service-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
}

.service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xl);
}

.why-choose-us h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.reason-item {
    text-align: center;
    padding: var(--spacing-md);
}

.reason-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.reason-item h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.reason-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    padding: calc(var(--spacing-2xl) - 1rem) 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-lg);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    transition: transform var(--transition-base);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--secondary-color);
    line-height: 1.8;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    padding: calc(var(--spacing-2xl) - 1rem) 0;
    background: var(--bg-white);
}

.contact-section .container {
    margin-bottom: var(--spacing-lg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.checkbox-group {
    margin: var(--spacing-sm) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start !important;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: var(--font-weight-normal);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    margin-top: var(--spacing-md);
    font-size: 1.125rem;
    padding: var(--spacing-md) var(--spacing-xl);
}

.form-status {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: var(--font-weight-semibold);
    display: none;
}

.form-status.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-box {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.info-content p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.social-media {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.social-media h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-links i {
    font-size: 1.25rem;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.footer-info i {
    color: var(--primary-light);
}

.footer-info p,
.footer-contact p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-contact i {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Footer Social Links */
.footer-social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-links a.social-icon-whatsapp i {
    color: #25d366;
}

.footer-social-links a.social-icon-whatsapp:hover i {
    color: #1da851;
}

.footer-social-links a.social-icon-facebook i {
    color: #1877f2;
}

.footer-social-links a.social-icon-facebook:hover i {
    color: #0a55cc;
}

.footer-social-links a.social-icon-instagram i {
    color: #E4405F;
}

.footer-social-links a.social-icon-instagram:hover i {
    color: #c41e3a;
}

.footer-social-links a.social-icon-linkedin i {
    color: #0a66c2;
}

.footer-social-links a.social-icon-linkedin:hover i {
    color: #074a94;
}

.footer-social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ====================================
   KVKK MODAL
   ==================================== */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-out;
}

.kvkk-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kvkk-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 20px;
    animation: slideIn 0.3s ease-out;
}

.kvkk-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.kvkk-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
}

.kvkk-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 32px;
    line-height: .65em;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.kvkk-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.kvkk-modal-body {
    padding: 25px;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
}

.kvkk-section {
    margin-bottom: 20px;
}

.kvkk-section ul {
    list-style: disc;
    margin: 0;
    padding-left: 1em;
}

.kvkk-section ul li {
    line-height: 1.4;
    padding: 0.3em 0;
}

.kvkk-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.kvkk-contact {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.kvkk-date {
    text-align: right;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 0.5em 1.25em;
}

/* ====================================
   PAGE HEADER (Alt Sayfalar)
   ==================================== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.page-header-icon i {
    font-size: 2.5rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ====================================
   CONTENT SECTION (Alt Sayfalar)
   ==================================== */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.content-cards {
    display: grid;
    gap: 15px;
}

.content-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: #2563eb;
    font-size: 1.5rem;
}

.card-content h3 {
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.card-content p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Info Alert Box */
.info-alert {
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 25px;
    border-radius: 12px;
}

.info-alert h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.info-alert i {
    color: #2563eb;
}

.info-alert p {
    color: #64748b;
    line-height: 1.8;
}

/* Sidebar Styles */
.sidebar-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-box h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.sidebar-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sidebar-item-title i {
    color: #2563eb;
    font-size: 1.25rem;
}

.sidebar-item-title strong {
    color: #1e293b;
}

.sidebar-item p {
    color: #64748b;
    margin-left: 35px;
}

.sidebar-item a {
    color: #2563eb;
    margin-left: 35px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-item-fee-note {
    color: #64748b;
    margin-left: 35px;
    font-size: 0.875rem;
}

.sidebar-features {
    margin-bottom: 25px;
}

.sidebar-features h4 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.sidebar-features ul {
    list-style: none;
    padding: 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #64748b;
}

.sidebar-features i {
    color: #10b981;
}

.btn-submit-sidebar {
    display: block;
    width: 100%;
    padding: 15px;
    background: #2563eb;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit-sidebar:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ====================================
   UTILITY STYLES
   ==================================== */
.flex-gap-15 {
    display: flex;
    gap: 15px;
}

.text-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.text-description-last {
    color: #64748b;
    line-height: 1.8;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.reason-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 60px; 
}

#egitimlerimiz {
    scroll-margin-top: 60px; 
}

#faq {
    scroll-margin-top: 60px; 
}

#contact {
    scroll-margin-top: 60px; 
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Desktop: Contact Content 2 sütun */
@media (min-width: 1179px) {
    .contact-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* Tablet (max-width: 1180px) */
@media (max-width: 1180px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-box {
        position: static;
        top: auto;
    }
}

/* Tablet ve daha küçük ekranlar (max-width: 992px) */
@media (max-width: 992px) {
    .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: var(--spacing-xs);
    }

    .nav-menu {
        width: 100%;
        margin-top: var(--spacing-sm);
        order: 1;
        justify-content: center;
        display: flex;
    }

    .nav-menu a {
        display: inline-block;
    }
}

/* Tablet/Telefon (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-logo, 
    .saglik-bakanligi-logo {
        height: 60px;
    }

    .nav-brand-text p {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        justify-content: center;
    }

    /* Services Section */
    .services-section h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Page Header (Alt Sayfalar) */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Content Cards */
    .content-card {
        flex-direction: column;
    }

    .card-icon {
        width: auto;
        height: auto;
    }

    /* KVKK Modal */
    .kvkk-modal-content {
        margin: 10px;
        max-height: 90vh;
    }

    .kvkk-modal-body {
        padding: 15px;
    }
}

/* Mobil (max-width: 480px) */
@media (max-width: 480px) {
    /* Navigation */
    .nav-logo, 
    .saglik-bakanligi-logo {
        height: 50px;
    }

    .nav-brand-text p {
        font-size: 0.9rem;
    }
    
    .saglik-bakanligi-text {
        font-size: 0.7rem;
        max-width: 110px;
    }
    
    .header-saglik-bakanligi {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .nav-brand {
        flex-shrink: 1;
        min-width: 0;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
        padding-top: 40px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }

    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Contact Section */
    .contact-form-wrapper,
    .contact-info-box {
        max-width: 100vw;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
}
