/* Gonzey CMS - Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #364153; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; height: auto; }
a { transition: color 0.3s; }

/* Header */
.header { background: white; border-bottom: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo-img { height: 36px; }
.nav-menu { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-menu > li { position: relative; display: flex; align-items: center; }
.nav-link { color: #364153; text-decoration: none; font-weight: 500; font-size: 16px; transition: color 0.3s; padding: 8px 0; display: flex; align-items: center; gap: 4px; }
.nav-link:hover { color: #003366; }
.nav-home { padding: 8px 4px !important; }
.nav-link .arrow { font-size: 10px; transition: transform 0.3s; }
.dropdown:hover .nav-link .arrow { transform: rotate(180deg); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: white; min-width: 280px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); border-radius: 8px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 100; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 10px 20px; color: #364153; text-decoration: none; font-size: 14px; transition: all 0.2s; }
.dropdown-menu a:hover { background: #f0f4ff; color: #003366; padding-left: 24px; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.lang-btn { background: none; border: none; color: #4a5565; cursor: pointer; font-weight: 500; font-size: 13px; padding: 4px 6px; text-decoration: none; transition: color 0.3s; }
.lang-btn:hover { color: #003366; }
.cta-btn { background: #003366; color: white; padding: 10px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; border: none; cursor: pointer; transition: background 0.3s; font-size: 13px; display: inline-block; }
.cta-btn:hover { background: #00264d; }
.cta-btn.primary { background: #003366; }
.cta-btn.primary:hover { background: #00264d; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #364153; }

/* Hero */
.hero { background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004080 100%); position: relative; height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; z-index: 0; }
.hero-bg.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,20,50,0.55); z-index: 1; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 700px; position: relative; min-height: 220px; }
.hero-slide { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
.hero-slide.active { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { font-size: 48px; font-weight: 700; color: white; line-height: 1.2; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-top: 20px; line-height: 1.7; }
.hero-dots { display: flex; gap: 8px; margin-top: 36px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; border: none; transition: all 0.3s; }
.dot.active { background: white; width: 28px; border-radius: 5px; }
.hero-controls { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; padding: 0 20px; z-index: 10; }
.hero-nav-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; pointer-events: auto; backdrop-filter: blur(4px); }
.hero-nav-btn:hover { background: rgba(255,255,255,0.25); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004080 100%); padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(255,255,255,0.06), transparent 70%); }
.page-hero h1 { font-size: 40px; font-weight: 700; color: white; position: relative; margin-bottom: 16px; }
.page-hero-line { width: 48px; height: 3px; background: #4d9fff; margin: 0 auto; border-radius: 2px; position: relative; }

/* Back Bar */
.back-bar { background: #f4f6f9; border-bottom: 1px solid #e5e7eb; }
.back-link { display: inline-flex; align-items: center; gap: 6px; padding: 12px 0; font-size: 13px; color: #364153; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.back-link:hover { color: #003366; }
.back-link svg { width: 16px; height: 16px; }

/* About Section (Homepage) */
.about-section { background: #f8f9fb; padding: 64px 0 48px; position: relative; }
.about-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #003366, #0066cc, #003366); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-box { background: white; border: 1px solid #e2e5ea; border-radius: 12px; padding: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.about-brand { font-size: 15px; font-weight: 700; color: #003366; letter-spacing: 1.5px; display: flex; align-items: center; gap: 12px; }
.about-brand::before { content: ''; width: 36px; height: 2px; background: #003366; }
.services-header { background: white; padding: 48px 0; }
.section-quote { font-size: 26px; font-weight: 700; color: #1a2332; line-height: 1.4; }
.section-divider { width: 48px; height: 3px; background: #003366; margin: 24px 0; border-radius: 2px; }
.section-text { font-size: 15px; color: #4a5565; line-height: 1.8; }
.section-title { font-size: 28px; font-weight: 700; color: #003366; }
.section-subtitle { font-size: 15px; color: #4a5565; margin-top: 12px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-cta { text-align: center; margin-top: 48px; }

/* About Intro */
.about-intro { background: white; padding: 64px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.about-intro-text h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 20px; }
.about-intro-text p { font-size: 15px; color: #4a5565; line-height: 1.8; margin-bottom: 16px; }

/* Services Grid */
.services-section { background: #f4f6f9; padding: 64px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.service-card-image { height: 180px; position: relative; overflow: hidden; background: linear-gradient(135deg, #003366, #004080); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; }
.service-card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,30,60,0.7), rgba(0,30,60,0.15) 60%); }
.service-card-label { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; align-items: center; gap: 10px; color: white; }
.service-card-label span { font-size: 18px; font-weight: 700; line-height: 1.3; }
.service-card-body { padding: 22px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.service-card-body p { font-size: 13px; color: #4a5565; line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.service-card-link { color: #003366; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }

/* Blog Grid */
.blog-section { background: white; padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.blog-image { position: relative; height: 200px; overflow: hidden; background: #e8eaee; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-category { position: absolute; top: 12px; left: 12px; background: #003366; color: white; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.blog-content { padding: 20px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 10px; }
.blog-date { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #6b7280; }
.blog-date svg { width: 14px; height: 14px; }
.blog-content h3 { font-size: 17px; font-weight: 700; color: #1a2332; margin-bottom: 8px; line-height: 1.4; }
.blog-content p { font-size: 13px; color: #4a5565; line-height: 1.6; margin-bottom: 12px; }
.blog-link { color: #003366; font-weight: 600; font-size: 13px; text-decoration: none; }
.blog-link:hover { text-decoration: underline; }

/* Team Grid */
.team-section { background: #f4f6f9; padding: 64px 0 80px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; margin: 0 auto; }
.team-card { border-radius: 12px; overflow: hidden; position: relative; background: #e8eaee; aspect-ratio: 3 / 4; transition: transform 0.3s, box-shadow 0.3s; display: block; text-decoration: none; color: inherit; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.team-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.team-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,40,0.75) 0%, rgba(0,20,40,0.15) 40%, transparent 60%); }
.team-card-info { position: absolute; bottom: 20px; left: 20px; right: 20px; }
.team-card-info h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.3; }
.team-card-info .accent-line { width: 36px; height: 3px; background: #4d9fff; border-radius: 2px; }

/* References */
.references-section { background: #f4f6f9; padding: 64px 0; }
.references-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* Contact Section */
.contact-section { padding: 80px 0; position: relative; }
.contact-box { background: white; border-radius: 14px; padding: 44px 48px; max-width: 750px; margin: 0 auto; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.contact-box h2 { font-size: 26px; font-weight: 700; color: #003366; margin-bottom: 6px; }
.contact-box > p { font-size: 15px; color: #6b7280; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: #364153; }
.input-wrapper { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: #eff6ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #003366; }
.input-icon.textarea-icon { top: 18px; transform: none; }
.input-icon svg { width: 16px; height: 16px; }
.input-wrapper input, .input-wrapper textarea { width: 100%; padding: 12px 16px 12px 58px; border: 1px solid #d1d5dc; border-radius: 10px; font-size: 14px; font-family: inherit; color: #364153; transition: border-color 0.2s; }
.input-wrapper input:focus, .input-wrapper textarea:focus { outline: none; border-color: #003366; }
.input-wrapper textarea { resize: vertical; min-height: 100px; }
.submit-btn { background: #0055cc; color: white; padding: 14px; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.3s; width: 100%; }
.submit-btn:hover { background: #003d99; }

/* Contact Main (iletisim page) */
.contact-main { background: #f4f6f9; padding: 64px 0; }
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 0; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.contact-image { position: relative; min-height: 400px; background: linear-gradient(135deg, #003366, #004080); }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-area { padding: 48px; }
.contact-form-area h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 6px; }
.contact-form-area > p { font-size: 15px; color: #6b7280; margin-bottom: 32px; }

/* Content Pages */
.content-section { background: white; padding: 64px 0; }
.content-section .content-body { max-width: 900px; margin: 0 auto; font-size: 15px; color: #4a5565; line-height: 1.8; }
.content-body, .content-body * { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; }
.content-body *:not(h1):not(h2):not(h3):not(h4):not(strong):not(b) { font-size: inherit !important; color: inherit !important; line-height: inherit !important; }
.content-body h2 { font-size: 24px; font-weight: 700; color: #003366; margin: 32px 0 16px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 20px; font-weight: 700; color: #003366; margin: 24px 0 12px; }
.content-body p { margin-bottom: 16px; }
.content-body ul { list-style: none; margin-bottom: 24px; padding-left: 0; }
.content-body ul li { padding: 6px 0 6px 24px; position: relative; line-height: 1.8; }
.content-body ul li::before { content: ''; width: 7px; height: 7px; border: 2px solid #003366; border-radius: 50%; position: absolute; left: 0; top: 14px; }
.content-body em { font-style: italic; color: #6b7280; }
.content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 16px; }
.content-body li { margin-bottom: 8px; }
.content-body img { border-radius: 12px; margin: 24px 0; }

/* Principles Grid */
.principles-section { background: white; padding: 64px 0; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.principle-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 32px 24px; text-align: center; transition: box-shadow 0.3s, transform 0.3s; }
.principle-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.principle-icon { width: 56px; height: 56px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #003366; }
.principle-icon svg { width: 24px; height: 24px; }
.principle-card h3 { font-size: 17px; font-weight: 700; color: #003366; margin-bottom: 14px; line-height: 1.35; }
.principle-card p { font-size: 13px; color: #4a5565; line-height: 1.7; }

/* Quick Links */
.quick-links { background: linear-gradient(135deg, #0a1628 0%, #0d2240 100%); padding: 0; position: relative; z-index: 10; }
.quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.quick-card { background: rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; text-decoration: none; color: white; display: flex; align-items: flex-start; gap: 16px; transition: all 0.3s; position: relative; }
.quick-card:last-child { border-right: none; }
.quick-card:hover { background: rgba(255,255,255,0.1); }
.quick-card::after { content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 2px; background: #2980b9; transform: scaleX(0); transition: transform 0.3s; }
.quick-card:hover::after { transform: scaleX(1); }
.quick-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #003366 0%, #004a8f 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quick-card-icon svg { width: 22px; height: 22px; color: white; }
.quick-card-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.quick-card-text p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; line-height: 1.5; }
.quick-card-text .link { font-size: 13px; color: #5ba3e6; font-weight: 600; letter-spacing: 0.3px; }

/* Footer */
.footer { background: linear-gradient(180deg, #0a1628, #071020); color: #c5d4e8; padding: 56px 0 0; }
.footer-content { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-tagline { font-weight: 600; margin-bottom: 12px; color: #c5d4e8; font-size: 14px; }
.footer-col > p { font-size: 14px; line-height: 1.65; margin-bottom: 20px; color: #8fa3be; }
.footer-col h3 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #8fa3be; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: white; }
.contact-info li { display: flex; gap: 10px; align-items: center; }
.contact-icon { flex-shrink: 0; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; color: #5b8abf; }
.contact-icon svg { width: 16px; height: 16px; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(255,255,255,0.08); color: white; border-radius: 6px; font-weight: 700; font-size: 13px; transition: all 0.3s; }
.social-links a:hover { background: rgba(255,255,255,0.16); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; color: #5b7a9e; font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #5b7a9e; font-size: 13px; }
.footer-links a:hover { color: white; }

/* Alert Messages */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.pagination a { background: white; color: #364153; border: 1px solid #e5e7eb; }
.pagination a:hover { background: #003366; color: white; }
.pagination span.current { background: #003366; color: white; }

/* Service Detail Layout */
.service-detail { background: #f4f6f9; padding: 48px 0 64px; }
.service-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.sidebar-card h3 { font-size: 16px; font-weight: 700; color: #003366; margin-bottom: 16px; }
.service-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.service-nav li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; text-decoration: none; font-size: 15px; color: #4a5565; transition: all 0.2s; font-weight: 500; }
.service-nav li a svg { width: 16px; height: 16px; flex-shrink: 0; color: #6b7280; }
.service-nav li a:hover { background: #f0f4ff; color: #003366; }
.service-nav li a.active { background: #003366; color: white; }
.service-nav li a.active svg { color: white; }
.service-nav li a .nav-arrow { margin-left: auto; }
.sidebar-contact { text-align: center; }
.sidebar-contact .icon-circle { width: 48px; height: 48px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #003366; }
.sidebar-contact .icon-circle svg { width: 22px; height: 22px; }
.sidebar-contact h3 { margin-bottom: 4px; }
.sidebar-contact p { font-size: 13px; color: #6b7280; margin-bottom: 12px; }
.sidebar-contact .contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #364153; margin-bottom: 8px; justify-content: center; }
.sidebar-contact .contact-item svg { width: 16px; height: 16px; color: #003366; flex-shrink: 0; }
.sidebar-contact .contact-item a { color: #364153; text-decoration: none; }
.sidebar-contact .contact-btn { display: block; background: #003366; color: white; padding: 10px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 13px; margin-top: 16px; text-align: center; transition: background 0.3s; }
.sidebar-contact .contact-btn:hover { background: #00264d; }
.main-content { background: white; border-radius: 12px; padding: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.main-content, .main-content * { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; }
.main-content *:not(h1):not(h2):not(h3):not(h4):not(strong):not(b) { font-size: inherit !important; color: inherit !important; line-height: inherit !important; }
.main-content h2 { font-size: 22px !important; font-weight: 700; color: #003366 !important; margin-bottom: 8px; }
.main-content h3 { font-size: 18px; font-weight: 700; color: #003366; margin-top: 32px; margin-bottom: 16px; }
.main-content > p { font-size: 14px; color: #6b7280; margin-bottom: 24px; }
.main-content ul { list-style: none; margin-bottom: 24px; }
.main-content ul li { font-size: 14px; color: #4a5565; line-height: 1.8; padding: 6px 0 6px 24px; position: relative; }
.main-content ul li::before { content: ''; width: 7px; height: 7px; border: 2px solid #003366; border-radius: 50%; position: absolute; left: 0; top: 12px; }
.main-content p { font-size: 14px; color: #4a5565; line-height: 1.8; margin-bottom: 12px; }
.detail-list { list-style: none; margin-bottom: 24px; }
.detail-list li { font-size: 14px; color: #4a5565; line-height: 1.8; padding: 6px 0 6px 24px; position: relative; }
.detail-list li::before { content: ''; width: 7px; height: 7px; border: 2px solid #003366; border-radius: 50%; position: absolute; left: 0; top: 12px; }
.detail-subheading { font-size: 16px; font-weight: 700; color: #003366; margin-top: 24px; margin-bottom: 8px; }

/* Method Section */
.method-section { background: #f4f6f9; padding: 64px 0; }
.method-section h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 24px; }
.method-section p { font-size: 15px; color: #4a5565; line-height: 1.8; margin-bottom: 16px; max-width: 960px; }

/* Sectors Grid */
.sectors-section { background: #f4f6f9; padding: 64px 0; }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sector-card { background: white; border-radius: 10px; padding: 24px 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); display: flex; align-items: flex-start; gap: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.sector-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.sector-dot { width: 8px; height: 8px; background: #003366; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.sector-card span { font-size: 14px; color: #364153; font-weight: 500; line-height: 1.5; }

/* Companies Grid */
.companies-section { background: #f4f6f9; padding: 64px 0; }
.companies-section h2 { font-size: 28px; font-weight: 700; color: #003366; text-align: center; margin-bottom: 40px; }
.companies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 40px; }
.company-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: white; border-radius: 8px; }
.company-dot { width: 7px; height: 7px; background: #003366; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.company-item span { font-size: 13px; color: #364153; line-height: 1.5; }
.companies-note { text-align: center; font-size: 13px; color: #9ca3af; font-style: italic; padding-top: 16px; border-top: 1px solid #e5e7eb; }

/* KVKK */
.kvkk-section { background: white; padding: 64px 0; }
.kvkk-content { max-width: 860px; margin: 0 auto; }
.kvkk-content h2, .kvkk-content h3 { font-size: 22px; font-weight: 700; color: #003366; margin-top: 32px; margin-bottom: 16px; }
.kvkk-content p { font-size: 15px; color: #4a5565; line-height: 1.8; margin-bottom: 16px; }
.kvkk-content ul { list-style: none; margin-bottom: 20px; padding-left: 0; }
.kvkk-content ul li { font-size: 14px; color: #4a5565; line-height: 1.8; padding: 4px 0 4px 20px; position: relative; }
.kvkk-content ul li::before { content: ''; width: 6px; height: 6px; background: #003366; border-radius: 50%; position: absolute; left: 0; top: 12px; }

/* About Intro (Hakkımızda) */
.about-intro { background: white; padding: 64px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.about-intro-text h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 20px; }
.about-intro-text p { font-size: 15px; color: #4a5565; line-height: 1.8; margin-bottom: 16px; }

/* Principles (Çalışma İlkeleri) */
.principles-section { background: white; padding: 64px 0; }
.principles-section > .container > h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 8px; }
.principles-section > .container > p { font-size: 15px; color: #4a5565; margin-bottom: 32px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.principle-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 32px 24px; text-align: center; transition: box-shadow 0.3s, transform 0.3s; }
.principle-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.principle-icon { width: 56px; height: 56px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #003366; }
.principle-icon svg { width: 24px; height: 24px; }
.principle-card h3 { font-size: 17px; font-weight: 700; color: #003366; margin-bottom: 14px; line-height: 1.35; }
.principle-card p { font-size: 13px; color: #4a5565; line-height: 1.7; }

/* Reference Cards (Referanslar) */
.ref-section { background: #f4f6f9; padding: 64px 0; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ref-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.ref-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.ref-card-image { height: 180px; position: relative; overflow: hidden; background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #004e89 100%); min-height: 180px; }
.ref-card-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 1; }
.ref-card-image-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,30,60,0.75), rgba(0,30,60,0.15) 60%); }
.ref-card-label { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 3; display: flex; align-items: center; gap: 10px; color: white; }
.ref-card-label-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); flex-shrink: 0; }
.ref-card-label-icon svg { width: 16px; height: 16px; }
.ref-card-label span { font-size: 18px; font-weight: 700; line-height: 1.3; }
.ref-card-header { padding: 28px 20px 16px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #f0f1f3; }
.ref-card-header-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #003366 0%, #004e89 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ref-card-header-icon svg { width: 20px; height: 20px; color: white; }
.ref-card-header h3 { font-size: 16px; font-weight: 700; color: #003366; margin: 0; }
.ref-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.ref-card-body p { font-size: 13px; color: #4a5565; line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.ref-card-link { color: #003366; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* Logos Grid (Firmalar) */
.logos-section { background: white; padding: 64px 0; }
.logos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.logo-item { height: 72px; display: flex; align-items: center; justify-content: center; padding: 12px; }
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(30%); transition: filter 0.3s; }
.logo-item img:hover { filter: grayscale(0); }
.logo-text { font-size: 13px; font-weight: 600; color: #4a5565; text-align: center; }
.sort-toggle { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:20px; font-size:12px; font-weight:500; color:#6b7280; background:#f3f4f6; text-decoration:none; transition:all 0.2s; }
.sort-toggle:hover { background:#e5e7eb; color:#003366; }

/* Docs Grid (Belgeler) */
.docs-section { background: #f4f6f9; padding: 64px 0; }
.docs-header { text-align: center; margin-bottom: 40px; }
.docs-header h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 8px; }
.docs-header p { font-size: 15px; color: #4a5565; margin-bottom: 6px; }
.docs-header .note { font-size: 13px; color: #9ca3af; font-style: italic; }
.docs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.doc-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.doc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.doc-card-img { height: 240px; background: #f8f9fa; display: flex; align-items: center; justify-content: center; padding: 16px; }
.doc-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; border: 1px solid #e5e7eb; border-radius: 4px; }
.doc-card-title { padding: 10px 16px; font-size: 13px; color: #374151; font-weight: 500; text-align: center; border-top: 1px solid #f3f4f6; }
.docs-note { text-align: center; font-size: 14px; color: #6b7280; padding-top: 16px; border-top: 1px solid #e5e7eb; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.15); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2001; }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: white; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.6); color: white; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; }

/* Contact Page (İletişim) */
.contact-main { background: #f4f6f9; padding: 64px 0; }
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 0; background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.contact-image { position: relative; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-area { padding: 48px; }
.contact-form-area h2 { font-size: 28px; font-weight: 700; color: #003366; margin-bottom: 6px; }
.contact-form-area > p { font-size: 15px; color: #6b7280; margin-bottom: 32px; }
.c-form { display: flex; flex-direction: column; gap: 18px; }
.c-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.c-form input, .c-form textarea { width: 100%; padding: 13px 16px; border: 1px solid #d1d5dc; border-radius: 10px; font-size: 14px; font-family: inherit; color: #364153; transition: border-color 0.2s; }
.c-form input:focus, .c-form textarea:focus { outline: none; border-color: #003366; }
.c-form textarea { resize: vertical; min-height: 110px; }
.c-form-submit { background: #003366; color: white; padding: 14px; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s; }
.c-form-submit:hover { background: #00264d; }
.c-form-submit svg { width: 18px; height: 18px; }
.contact-info-row { display: flex; gap: 40px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.contact-info-item { display: flex; align-items: center; gap: 12px; }
.ci-icon { width: 40px; height: 40px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #003366; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 13px; font-weight: 700; color: #003366; }
.ci-value { font-size: 14px; color: #4a5565; }
.ci-value a { color: #4a5565; text-decoration: none; }

/* Blog Card (List) */
.blog-card-img { height: 180px; position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-tag { position: absolute; top: 12px; left: 12px; background: #003366; color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.blog-card-meta { font-size: 12px; color: #6b7280; margin-bottom: 8px; display: flex; gap: 12px; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; color: #003366; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: #4a5565; line-height: 1.6; flex-grow: 1; margin-bottom: 12px; }
.blog-card-link { font-size: 13px; font-weight: 700; color: #003366; text-decoration: none; }

/* Blog Detail */
.hero-image { height: 320px; position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image .tag { position: absolute; bottom: 20px; left: 32px; background: #003366; color: white; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 6px; }
.blog-detail-section { background: #f4f6f9; padding: 48px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; }
.blog-detail-content { background: white; border-radius: 14px; padding: 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.blog-detail-content h1 { font-size: 32px; font-weight: 700; color: #003366; margin-bottom: 16px; line-height: 1.3; }
.blog-detail-meta { font-size: 13px; color: #6b7280; display: flex; gap: 20px; margin-bottom: 8px; align-items: center; flex-wrap: wrap; }
.blog-divider { height: 1px; background: #e5e7eb; margin: 20px 0 24px; }
.blog-text { font-size: 15px; line-height: 1.8; color: #364153; }
.blog-text h2 { font-size: 20px; font-weight: 700; color: #003366; margin: 28px 0 12px; }
.blog-text p { margin-bottom: 16px; }
.other-post { display: flex; gap: 12px; margin-bottom: 16px; text-decoration: none; color: inherit; }
.other-post:last-child { margin-bottom: 0; }
.other-post-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.other-post-img img { width: 100%; height: 100%; object-fit: cover; }
.other-post-text { font-size: 12px; }
.other-post-text .cat { color: #4d9fff; font-weight: 600; margin-bottom: 2px; }
.other-post-text .title { color: #003366; font-weight: 600; line-height: 1.4; }

/* Newsletter */
.newsletter-bar { background: #0a1628; padding: 48px 0; text-align: center; }
.newsletter-bar h2 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.newsletter-bar p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

/* Content Body Generic */
.content-body { max-width: 960px; margin: 0 auto; }
.content-body h2 { font-size: 22px; font-weight: 700; color: #003366; margin-top: 32px; margin-bottom: 16px; }
.content-body h3 { font-size: 18px; font-weight: 700; color: #003366; margin-top: 24px; margin-bottom: 12px; }
.content-body p { font-size: 15px; color: #4a5565; line-height: 1.8; margin-bottom: 16px; }
.content-body ul { list-style: none; margin-bottom: 20px; }
.content-body ul li { font-size: 14px; color: #4a5565; line-height: 1.8; padding: 4px 0 4px 20px; position: relative; }
.content-body ul li::before { content: ''; width: 6px; height: 6px; background: #003366; border-radius: 50%; position: absolute; left: 0; top: 12px; }

/* Responsive */
@media (max-width: 1024px) {
    .services-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-intro-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-image img { height: 300px; }
    .service-layout { grid-template-columns: 1fr; }
    .service-layout .sidebar { order: 2; }
    .service-layout .main-content { order: 1; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .logos-grid { grid-template-columns: repeat(4, 1fr); }
    .docs-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); gap: 0; z-index: 999; }
    .nav-menu.active { display: flex; }
    .nav-menu > li { padding: 10px 0; }
    .mobile-menu-btn { display: block; }
    .nav-actions .cta-btn { display: none; }
    .services-grid, .blog-grid, .team-grid, .principles-grid, .ref-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .quick-cards { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .form-row, .c-form-row { grid-template-columns: 1fr; }
    .sectors-grid, .companies-grid { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
    .main-content { padding: 24px; }
    .hero { height: auto; min-height: 400px; padding: 60px 0 80px; }
    .hero-content { min-height: 180px; }
    .hero-title { font-size: 28px; }
    .hero-controls { top: auto; bottom: 24px; transform: none; padding: 0 16px; }
    .hero-nav-btn { width: 36px; height: 36px; font-size: 18px; }
    .hero-dots { margin-top: 48px; }
    .page-hero h1 { font-size: 28px; }
    .member-detail-grid { grid-template-columns: 1fr !important; }
    .member-detail-grid > div:first-child { max-width: 280px; margin: 0 auto; }
    .container { padding: 0 16px; }
    .contact-box { padding: 28px 20px; }
    .contact-form-area { padding: 28px; }
    .contact-info-row { flex-direction: column; gap: 16px; }
    .blog-detail-content { padding: 24px; }
    .blog-detail-content h1 { font-size: 24px; }
}
