:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --body-color: background: linear-gradient(to bottom, #ffffff 0%, #a8a8a8 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #fff;
}

/* Dark mode colors */
body.dark-mode {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #94a3b8;
    --dark-color: #f8fafc;
    --light-color: #0f172a;
    --text-color: #e2e8f0;
    --text-light: #94a3b8;
    --border-color: #334155;
    --bg-primary: #1e293b;
    --bg-secondary: #0f172a;
    --bg-tertiary: #334155;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Sayfa ilk yüklenirken transition'ları devre dışı bırak - flash önleme */
body:not(.loaded) * {
    transition: none !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-secondary);
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Updated container rules for consistent 1336px max-width */
header .navbar .container,
footer > .container,
main {
    max-width: 1336px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: auto;
}

body.dark-mode header {
    background: rgba(30, 41, 59, 0.95);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex-shrink: 0;
    min-width: 0;
}

.nav-brand-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: var(--transition);
}

.nav-brand a:hover {
    color: var(--primary-hover);
}

.nav-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}

#globeCanvas {
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
    flex-shrink: 0;
}

#globeCanvas:hover {
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
    flex-shrink: 0;
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    background: none;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when nav is open */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.nav-open .expand-button {
    display: none !important;
}


/* Main Content */
main {
    margin-top: 100px;
    flex: 1;
    min-height: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Time Info */
.time-info {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    text-align: right;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    min-width: 180px;
}

.time-info .date-group {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    margin-top: 2px;
}

.time-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
}

.day-info {
    display: none;
}

.date-day-info {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
}

.date-info {
    font-size: 1.1rem;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.week, .month, .year {
    font-size: 1.05rem;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Time Info Dark Mode */
body.dark-mode .time-display {
    color: #e2e8f0;
}

body.dark-mode .date-day-info {
    color: #e2e8f0;
}

body.dark-mode .date-info {
    color: #e2e8f0;
}

body.dark-mode .week,
body.dark-mode .month,
body.dark-mode .year {
    color: #e2e8f0;
}

/* Info Box Warning */
.info-box-warning {
    margin-top: 24px;
    padding: 12px 18px;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 6px;
    color: #856404;
    font-size: 0.97rem;
}

.info-box-warning p {
    margin-bottom: 0.5rem;
    color: inherit;
}

.info-box-warning p:last-child {
    margin-bottom: 0;
}

.info-box-warning strong {
    color: #664d03;
}

/* Info Box Warning Dark Mode */
body.dark-mode .info-box-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

body.dark-mode .info-box-warning strong {
    color: #ffd54f;
}

/* Red Warning Text */
.red-warning-text {
    color: #dc3545;
}

body.dark-mode .red-warning-text {
    color: #ff6b6b;
}

/* Baslik (Title/Header Section) */
.baslik {
    margin-bottom: 1rem;
}

.baslik p {
    color: var(--text-color);
    line-height: 1.6;
}

.baslik strong {
    color: var(--dark-color);
}

body.dark-mode .baslik p {
    color: var(--text-color);
}

body.dark-mode .baslik strong {
    color: var(--dark-color);
}

/* Page Containers */
.hakkimizda-container {
    max-width: 900px;
    width: 90%;
    margin: 60px auto 60px auto;
    padding: 48px 32px 40px 32px;
    background: rgba(255,255,255,0.97);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

body.dark-mode .hakkimizda-container {
    background: rgba(30, 41, 59, 0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hakkimizda-text p {
    color: #222;
    text-align: justify;
    font-weight: 500;
    margin-bottom: 18px;
}

body.dark-mode .hakkimizda-text p {
    color: #e2e8f0;
}

.hakkimizda-text strong {
    color: #111;
}

body.dark-mode .hakkimizda-text strong {
    color: #f1f5f9;
}

.hakkimizda-container h2 {
    text-align: center;
    font-weight: 600;
}

/* Contact Form Container */
.contact-form-container {
    max-width: 550px;
    width: 90%;
    margin: 60px auto 60px auto;
    padding: 48px 32px 40px 32px;
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(0,123,255,0.08);
}

body.dark-mode .contact-form-container {
    background: rgba(30, 41, 59, 0.98);
    box-shadow: 0 6px 32px rgba(37, 99, 235, 0.15);
}

/* Page Headers */
.page-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.page-title-primary {
    font-size: 1.7rem;
    color: #007bff;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

body.dark-mode .page-title-primary {
    color: #3b82f6;
}

/* Feedback Box */
.feedback-box {
    background: rgba(106,176,251,0.08);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
}

body.dark-mode .feedback-box {
    background: rgba(59, 130, 246, 0.15);
}

.feedback-label {
    color: #007bff;
    font-weight: 500;
}

body.dark-mode .feedback-label {
    color: #3b82f6;
}

.feedback-text {
    color: #222;
    font-weight: 500;
}

body.dark-mode .feedback-text {
    color: #e2e8f0;
}

.feedback-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

body.dark-mode .feedback-link {
    color: #60a5fa;
}

.feedback-link:hover {
    text-decoration: none;
}

/* Page Footer Signature */
.page-footer-signature {
    margin-top: 32px;
    text-align: center;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
}

body.dark-mode .page-footer-signature {
    color: #e2e8f0;
}

/* Contact Form */
.contact-form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-weight: 500;
    color: #222;
}

body.dark-mode .form-label {
    color: #e2e8f0;
}

.form-input-styled,
.form-textarea-styled,
.form-select-styled {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfd8dc;
    font-size: 1rem;
    background: #f7fafd;
    transition: border-color 0.2s, background 0.2s;
}

body.dark-mode .form-input-styled,
body.dark-mode .form-textarea-styled,
body.dark-mode .form-select-styled {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #475569;
    color: #e2e8f0;
}

.form-input-styled:focus,
.form-textarea-styled:focus,
.form-select-styled:focus {
    outline: none;
    border-color: #007bff;
}

body.dark-mode .form-input-styled:focus,
body.dark-mode .form-textarea-styled:focus,
body.dark-mode .form-select-styled:focus {
    border-color: #3b82f6;
}

.form-textarea-styled {
    height: 110px;
    resize: vertical;
}

.form-input-styled::placeholder,
.form-textarea-styled::placeholder,
.form-select-styled::placeholder {
    color: #94a3b8;
    opacity: 1;
}

body.dark-mode .form-input-styled::placeholder,
body.dark-mode .form-textarea-styled::placeholder,
body.dark-mode .form-select-styled::placeholder {
    color: #64748b;
}

/* Submit Button */
.submit-button-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #007bff 60%, #6ab0fb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    transition: background 0.2s, transform 0.1s;
}

.submit-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

body.dark-mode .submit-button-primary {
    background: linear-gradient(90deg, #2563eb 60%, #3b82f6 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

body.dark-mode .submit-button-primary:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Alert Boxes */
.alert-success-box {
    margin-top: 22px;
    color: #155724;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 12px;
}

body.dark-mode .alert-success-box {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.alert-error-box {
    margin-top: 22px;
    color: #dc3545;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px;
}

body.dark-mode .alert-error-box {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

body.dark-mode footer {
    background: #0a0f1a;
    border-top: 1px solid var(--border-color);
}

footer .container {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    max-width: 1336px;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        align-items: center;
    }
    
    .nav-toggle {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        display: flex;
    }
    
    .time-info {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        left: auto;
        justify-content: flex-start;
        margin-top: 0;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .time-info {
        display: flex;
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1.25rem 0;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        border-radius: 0;
        background: none;
        position: relative;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
        background: rgba(37, 99, 235, 0.05);
        transform: translateX(5px);
    }
    
    .nav-menu a.active {
        color: var(--primary-color);
        background: rgba(37, 99, 235, 0.1);
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transition: var(--transition);
        border-radius: 2px;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        height: 100%;
    }
    
    /* Smooth slide-in animation for menu items */
    .nav-menu.active li {
        animation: slideInRight 0.3s ease-out forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-section {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-section ul {
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
        text-align: left;
    }
    .footer-section h3,
    .footer-section h4 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        text-align: center;
    }
    
    .nav-subtitle {
        display: none;
    }
    
    .container {
        padding: 0 1rem;
    }

    main {
        margin-top: 120px;
        min-height: 0;
    }
    
    header .navbar .container,
    footer > .container,
    main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 0.25rem;
    }
    
    .nav-brand a {
        font-size: 1.25rem;
    }
    
    #globeCanvas {
        transform: scale(0.8);
    }

    .nav-menu {
        width: 100vw;
        max-width: 100vw;
        padding: 5rem 1.5rem 2rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    header .navbar .container,
    footer > .container,
    main {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* Hamburger menu ve nav-menu responsive iyileştirme */
@media (max-width: 1280px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        right: auto;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        margin-top: 0;
        justify-content: flex-start;
    }
    .nav-menu.active {
        left: 0;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu .time-info {
        display: flex;
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        align-items: center;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        padding: 1.25rem 0;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 500;
        display: block;
        border: transparent;
        background: none;
        position: relative;
    }
    .nav-menu a:hover {
        color: var(--primary-color);
        background: rgba(37, 99, 235, 0.05);
        transform: translateX(5px);
    }
    .nav-menu a.active {
        color: var(--primary-color);
        background: rgba(37, 99, 235, 0.1);
    }
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transition: var(--transition);
        border-radius: 2px;
    }
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        height: 100%;
    }
    /* Smooth slide-in animation for menu items */
    .nav-menu.active li {
        animation: slideInRight 0.3s ease-out forwards;
    }
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
}

/* 900px ve altı için nav-menu daha sola ve tam ekran */
@media (max-width: 900px) {
    .nav-menu {
        left: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 5rem 1.5rem 2rem;
    }
}

/* Desktop nav-menu sola kaydırma */
@media (min-width: 1280px) {
    .nav-menu {
        justify-content: flex-end;
        padding-right: 310px; 
    }
    .footer-content {
        padding-left: 130px;
    }
    .footer-section {
        margin-left: 30px;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Footer Warning Styles */
.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.footer-warning-icon {
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.footer-warning-text {
    color: #ffc107;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Footer Info Box Styles */
.footer-info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 0 0 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-info-box strong {
    color: white;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-warning {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-warning-icon {
        font-size: 1rem;
    }
    
    .footer-warning-text {
        font-size: 0.75rem;
    }
    
    .footer-info-box {
        margin: 0 0 1.5rem 0;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    .footer-links {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Content Page Styles */
.page-section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.content-heading-primary {
    color: var(--primary-color);
    margin: 32px 0 16px 0;
    font-weight: 600;
}

.content-heading-secondary {
    color: var(--primary-color);
    margin: 24px 0 12px 0;
    font-weight: 600;
}

.info-box-blue {
    background: rgba(106, 176, 251, 0.08);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
}

.info-box-blue span,
.info-box-blue a {
    font-weight: 500;
}

.info-box-blue a {
    color: var(--primary-color);
    text-decoration: underline;
}

.warning-box-yellow {
    background: rgba(255, 193, 7, 0.1);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
    border-left: 4px solid #ffc107;
}

.warning-box-yellow h4 {
    color: #856404;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.warning-box-yellow p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.warning-box-red {
    background: rgba(220, 53, 69, 0.1);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
    border-left: 4px solid #dc3545;
}

.warning-box-red h4 {
    color: #721c24;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.warning-box-red ul {
    color: #721c24;
    margin: 0;
    padding-left: 20px;
}

.info-box-blue-bordered {
    background: rgba(106, 176, 251, 0.08);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
    border-left: 4px solid var(--primary-color);
}

.info-box-blue-bordered h4 {
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.info-box-blue-bordered p,
.info-box-blue-bordered ul {
    margin: 0 0 12px 0;
    font-weight: 500;
}

.info-box-blue-bordered ul {
    padding-left: 20px;
}

.info-box-blue-bordered p:last-child,
.info-box-blue-bordered ul:last-child {
    margin-bottom: 0;
}

.info-box-green-bordered {
    background: rgba(40, 167, 69, 0.08);
    padding: 18px 16px;
    border-radius: 10px;
    margin: 24px 0;
    border-left: 4px solid #28a745;
}

.info-box-green-bordered h4 {
    color: #28a745;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.info-box-green-bordered p,
.info-box-green-bordered ul {
    margin: 0 0 12px 0;
    font-weight: 500;
}

.info-box-green-bordered ul {
    padding-left: 20px;
}

.info-box-green-bordered p:last-child,
.info-box-green-bordered ul:last-child {
    margin-bottom: 0;
}

.page-last-updated {
    margin-top: 32px;
    text-align: center;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.hakkimizda-text ul {
    color: var(--text-color);
    text-align: justify;
    font-weight: 500;
    margin-bottom: 18px;
}

.hakkimizda-text li {
    margin-bottom: 8px;
}

.hakkimizda-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.hakkimizda-text a:hover {
    text-decoration: none;
}

/* Content Page Dark Mode */
body.dark-mode .page-section-title {
    color: #60a5fa;
}

body.dark-mode .content-heading-primary {
    color: #60a5fa;
}

body.dark-mode .content-heading-secondary {
    color: #60a5fa;
}

body.dark-mode .info-box-blue {
    background: rgba(59, 130, 246, 0.1);
}

body.dark-mode .info-box-blue span {
    color: #e2e8f0;
}

body.dark-mode .info-box-blue a {
    color: #60a5fa;
}

body.dark-mode .warning-box-yellow {
    background: rgba(234, 179, 8, 0.15);
    border-left-color: #eab308;
}

body.dark-mode .warning-box-yellow h4 {
    color: #fef08a;
}

body.dark-mode .warning-box-yellow p {
    color: #fef08a;
}

body.dark-mode .warning-box-red {
    background: rgba(239, 68, 68, 0.15);
    border-left-color: #ef4444;
}

body.dark-mode .warning-box-red h4 {
    color: #fca5a5;
}

body.dark-mode .warning-box-red ul {
    color: #fca5a5;
}

body.dark-mode .info-box-blue-bordered {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #60a5fa;
}

body.dark-mode .info-box-blue-bordered h4 {
    color: #60a5fa;
}

body.dark-mode .info-box-blue-bordered p,
body.dark-mode .info-box-blue-bordered ul {
    color: #e2e8f0;
}

body.dark-mode .info-box-green-bordered {
    background: rgba(34, 197, 94, 0.15);
    border-left-color: #22c55e;
}

body.dark-mode .info-box-green-bordered h4 {
    color: #86efac;
}

body.dark-mode .info-box-green-bordered p,
body.dark-mode .info-box-green-bordered ul {
    color: #e2e8f0;
}

body.dark-mode .page-last-updated {
    color: #94a3b8;
}

body.dark-mode .hakkimizda-text a {
    color: #60a5fa;
}

