/* ============================================================
 * diyetisyen-pro Theme CSS
 * Consolidated from all template inline <style> blocks
 * ============================================================ */

/* ===== RESET / BASE ===== */
body { font-family: var(--body-font); margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); }
a { color: var(--primary-color); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== BUTTON ===== */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--primary-color); color: #fff; box-shadow: 0 4px 12px rgba(39,174,96,0.25); }
.btn-primary:hover { background: #1e8449; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,174,96,0.35); }
.btn-accent { background: var(--accent-color); color: #fff; }
.btn-accent:hover { background: #d35400; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: #fff; color: #1a202c; }
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* ===== HEADER ===== */
.site-header { padding: 15px 0; border-bottom: 1px solid #e2e8f0; background: #fff; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-branding img { max-height: 60px; width: auto; display: block; }
.header-right { display: flex; align-items: center; gap: 20px; }

.site-navigation ul { display: flex; gap: 25px; margin: 0; padding: 0; align-items: center; list-style: none; }
.site-navigation li { position: relative; }
.site-navigation a { font-weight: 500; color: #333; font-size: 15px; text-decoration: none; transition: color 0.3s; display: block; padding: 10px 0; white-space: nowrap; }
.site-navigation a:hover { color: var(--primary-color); }
.site-navigation li.menu-item-has-children > a::after { content: " ▾"; font-size: 12px; margin-left: 4px; opacity: 0.7; }

.site-navigation ul.sub-menu { display: block; position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-radius: 8px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; flex-direction: column; z-index: 1000; border: 1px solid #f1f5f9; }
.site-navigation li:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-navigation ul.sub-menu li { width: 100%; }
.site-navigation ul.sub-menu a { padding: 10px 20px; font-size: 14px; color: #475569; white-space: normal; }
.site-navigation ul.sub-menu a::after { display: none; }
.site-navigation ul.sub-menu a:hover { background: #f8fafc; color: var(--primary-color); padding-left: 25px; }

.header-cta-btn { background: var(--accent-color); color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; transition: all 0.3s; white-space: nowrap; font-size: 15px; }
.header-cta-btn:hover { background: #d35400; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3); }

/* Hamburger Buton */
.hamburger-btn { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; cursor: pointer; background: none; border: none; padding: 0; z-index: 1001; }
.hamburger-btn span { display: block; width: 26px; height: 2.5px; background: #333; border-radius: 2px; transition: all 0.3s ease; margin: 4px 0; }
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobil Menü Overlay */
.mobile-menu-overlay { display: none; position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: #fff; z-index: 1000; transition: right 0.35s ease; overflow-y: auto; padding-top: 80px; }
.mobile-menu-overlay.open { right: 0; }
.mobile-menu-overlay .mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu-overlay .mobile-nav li { border-bottom: 1px solid #f1f5f9; }
.mobile-menu-overlay .mobile-nav a { display: block; padding: 16px 25px; font-size: 17px; font-weight: 500; color: #1a202c; text-decoration: none; }
.mobile-menu-overlay .mobile-nav a:hover { color: var(--primary-color); background: #f8fafc; }
.mobile-menu-overlay .mobile-nav li.menu-item-has-children > a { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-overlay .mobile-nav li.menu-item-has-children > a::after { content: '+'; font-size: 20px; font-weight: 300; transition: transform 0.3s; }
.mobile-menu-overlay .mobile-nav li.menu-item-has-children.open > a::after { content: '\2212'; }
.mobile-menu-overlay .mobile-nav ul.sub-menu { display: none; background: #f8fafc; padding: 5px 0; }
.mobile-menu-overlay .mobile-nav ul.sub-menu a { padding: 12px 25px 12px 40px; font-size: 15px; font-weight: 400; }

/* ===== FOOTER ===== */
.site-footer { background-color: #1a202c; color: #a0aec0; padding: 80px 0 30px; margin-top: 80px; }
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h3 { font-size: 20px; margin-bottom: 25px; color: #fff; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--primary-color); border-radius: 2px; }
.footer-col ul { padding: 0; list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #a0aec0; transition: color 0.3s; text-decoration: none; }
.footer-col a:hover { color: var(--secondary-color); }

.social-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; padding: 8px 15px; background: rgba(255,255,255,0.1); border-radius: 4px; color: #fff; font-size: 13px; font-weight: bold; transition: all 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--primary-color); transform: translateY(-3px); }

.site-info { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
.site-info a { color: var(--secondary-color); font-weight: 600; text-decoration: none; }

.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.15); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== PAGE HEADERS ===== */
.page-header-simple { background-color: var(--bg-light); padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 50px; }
.page-header-simple h1 { font-size: 36px; color: #1a202c; margin: 0; }
.page-content-wrap { max-width: 900px; margin: 0 auto 80px auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.page-content-wrap img { border-radius: 8px; margin-bottom: 20px; }
.entry-content h2, .entry-content h3 { margin-top: 30px; margin-bottom: 15px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { margin-bottom: 20px; padding-left: 20px; }

/* ===== ANA SAYFA (front-page.php) ===== */
.hero-advanced { background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%); padding: 140px 0 180px; text-align: center; position: relative; }
.hero-advanced h1 { font-size: 56px; color: #1a202c; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero-advanced p { font-size: 20px; color: var(--text-light); max-width: 700px; margin: 0 auto 40px; line-height: 1.7; }
.features-wrap { margin-top: -90px; position: relative; z-index: 10; margin-bottom: 100px; }
.features-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.feature-box { background: #fff; padding: 40px 30px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); flex: 1; min-width: 280px; text-align: center; border-bottom: 4px solid var(--primary-color); transition: transform 0.3s; }
.feature-box:hover { transform: translateY(-10px); }
.feature-box h3 { font-size: 20px; margin: 0; color: #1a202c; }

.hp-about { padding: 80px 0 100px; background: #fff; }
.hp-about-grid { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.hp-about-img { flex: 1; min-width: 300px; position: relative; }
.hp-about-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 2; }
.hp-about-img::before { content:''; position:absolute; top:-20px; left:-20px; right:20px; bottom:20px; background:var(--primary-color); border-radius:20px; z-index:1; opacity:0.1; }
.hp-about-text { flex: 1; min-width: 300px; }
.hp-about-text h2 { font-size: 42px; color: #1a202c; margin-bottom: 25px; line-height: 1.2; }
.hp-about-text p { font-size: 17px; margin-bottom: 30px; line-height: 1.8; color: var(--text-light); }

.hp-process { padding: 100px 0; background: var(--bg-light); text-align: center; }
.hp-process-header h2 { font-size: 38px; color: #1a202c; margin-bottom: 50px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.process-step { background: #fff; padding: 40px 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.3s; position: relative; z-index: 2; border: 1px solid transparent; }
.process-step:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.process-icon { width: 80px; height: 80px; background: rgba(39, 174, 96, 0.1); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 25px; }
.process-step h3 { font-size: 22px; margin-bottom: 15px; color: #1a202c; }
.process-step p { font-size: 15px; color: var(--text-light); margin: 0; }

.hp-services { padding: 100px 0; background: #fff; }
.section-title { text-align: center; font-size: 38px; color: #1a202c; margin-bottom: 50px; }
.hp-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid var(--border-color); transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 30px; }

.hp-success { padding: 100px 0; background: var(--bg-light); }
.hp-success-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.success-card { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); display: flex; flex-direction: column; align-items: center; text-align: center; transition: 0.3s; }
.success-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }

.hp-bmi { padding: 100px 0; background: #fff; }
.bmi-box { max-width: 650px; margin: 0 auto; background: var(--bg-light); padding: 50px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.bmi-box input { width: 100%; padding: 15px 20px; border: 1px solid #ccd0d4; border-radius: 8px; font-size: 16px; transition: border 0.3s; }
.bmi-box input:focus { border-color: var(--primary-color); outline: none; }

.hp-blog { padding: 100px 0; background: #f8fafc; }
.hp-blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.hp-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.hp-cta { padding: 80px 0; background: var(--primary-color); text-align: center; color: #fff; }

/* ---- Slider ---- */
.dp-slider { position: relative; width: 100%; overflow: hidden; background: #1a202c; }
.dp-slider-inner { position: relative; width: 100%; }
.dp-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.8s ease-in-out; z-index: 1; }
.dp-slide.active { opacity: 1; z-index: 2; position: relative; }
.dp-slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.dp-slide-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); }
.dp-slide-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 40px 20px; color: #fff; }
.dp-slide-content h2 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); transform: translateY(30px); opacity: 0; transition: all 0.6s ease 0.3s; }
.dp-slide.active .dp-slide-content h2 { transform: translateY(0); opacity: 1; }
.dp-slide-content p { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 35px; line-height: 1.7; max-width: 650px; margin-left: auto; margin-right: auto; transform: translateY(30px); opacity: 0; transition: all 0.6s ease 0.5s; }
.dp-slide.active .dp-slide-content p { transform: translateY(0); opacity: 1; }
.dp-slide-content .btn { transform: translateY(30px); opacity: 0; transition: all 0.6s ease 0.7s; }
.dp-slide.active .dp-slide-content .btn { transform: translateY(0); opacity: 1; }

.dp-slider-nav { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dp-slide-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; }
.dp-slide-dot.active { background: #fff; border-color: var(--primary-color); transform: scale(1.2); }
.dp-slide-dot:hover { background: rgba(255,255,255,0.8); }

.dp-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); color: #fff; border: none; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; font-size: 24px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(4px); }
.dp-slider-arrow:hover { background: var(--primary-color); transform: translateY(-50%) scale(1.1); }
.dp-slider-prev { left: 20px; }
.dp-slider-next { right: 20px; }

/* ---- HP Comparison / Önce-Sonra ---- */
.hp-comparison { padding: 80px 0; }
.hp-comparison-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.hp-comparison .dp-comparison { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: transform 0.3s; }
.hp-comparison .dp-comparison:hover { transform: translateY(-4px); }
.hp-comparison .dp-cmp-slider { border-radius: 0; }

/* ---- HP Pricing ---- */
.hp-pricing { padding: 80px 0; background: var(--bg-light); }
.hp-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.hp-pricing .pricing-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px 25px; text-align: center; transition: transform .3s; position: relative; }
.hp-pricing .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.hp-pricing .pricing-card.featured { border-color: var(--primary-color); box-shadow: 0 8px 25px rgba(39,174,96,0.1); }
.hp-pricing .pricing-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.hp-pricing .pricing-name { font-size: 20px; margin-bottom: 5px; }
.hp-pricing .pricing-amount { font-size: 36px; font-weight: 800; color: #1a202c; margin: 15px 0; }
.hp-pricing .pricing-period { font-size: 14px; color: var(--text-light); }
.hp-pricing .pricing-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.hp-pricing .pricing-features li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #475569; }
.hp-pricing .pricing-features li::before { content: "\2713 "; color: var(--primary-color); font-weight: 700; }

/* ---- HP FAQ ---- */
.hp-faq { padding: 80px 0; }
.hp-faq-wrap { max-width: 800px; margin: 0 auto; }
.hp-faq .faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.hp-faq .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 600; color: #1a202c; }
.hp-faq .faq-question::after { content: '+'; font-size: 22px; color: var(--primary-color); margin-left: 15px; flex-shrink: 0; }
.hp-faq .faq-item.open .faq-question::after { content: '\2212'; }
.hp-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 22px; }
.hp-faq .faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }
.hp-faq .faq-answer p { color: #475569; font-size: 15px; line-height: 1.6; margin: 0; }

/* ===== HİZMETLER (archive + single) ===== */
.services-header { background-color: var(--bg-light); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 60px; }
.services-title { font-size: 40px; color: #1a202c; margin-bottom: 15px; }
.services-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; margin-bottom: 80px; }
.services-grid .service-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.services-grid .service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.service-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.service-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.services-grid .service-title { font-size: 22px; margin-bottom: 15px; }
.services-grid .service-title a { color: #1a202c; }
.services-grid .service-title a:hover { color: var(--primary-color); }
.service-excerpt { color: var(--text-light); margin-bottom: 25px; flex-grow: 1; }
.service-btn { align-self: flex-start; font-weight: 600; color: var(--primary-color); border-bottom: 2px solid transparent; padding-bottom: 2px; }
.service-btn:hover { border-bottom-color: var(--primary-color); }

/* Single Hizmet */
.service-single-header { background-color: var(--bg-light); padding: 60px 0; margin-bottom: 50px; }
.service-single-header-inner { display: flex; align-items: center; gap: 50px; }
.service-single-title { font-size: 38px; color: #1a202c; margin-bottom: 20px; }
.service-breadcrumb { font-size: 14px; color: var(--text-light); margin-bottom: 15px; }
.service-breadcrumb a { color: var(--primary-color); }
.service-single-image { flex: 1; }
.service-single-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; height: auto; }
.service-single-intro { flex: 1; }
.service-single-content { max-width: 900px; margin: 0 auto 60px auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.service-single-content h2, .service-single-content h3 { color: var(--primary-color); margin-top: 30px; margin-bottom: 15px; }
.service-single-content ul { list-style-type: disc; padding-left: 20px; margin-bottom: 20px; }
.service-single-content li { margin-bottom: 10px; }
.service-cta-box { background: var(--primary-color); color: #fff; text-align: center; padding: 50px; border-radius: 12px; margin-bottom: 80px; }
.service-cta-box h3 { color: #fff; font-size: 28px; margin-bottom: 15px; }
.service-cta-box p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.service-cta-box .btn-accent { background: var(--accent-color); color: #fff; font-size: 18px; padding: 15px 40px; }
.service-cta-box .btn-accent:hover { background: #fff; color: var(--accent-color); }

/* ===== BAŞARI HİKAYELERİ (archive + single) ===== */
.success-header { background-color: var(--primary-color); padding: 80px 0; text-align: center; margin-bottom: 60px; color: #fff; }
.success-title { font-size: 40px; margin-bottom: 15px; color: #fff; }
.success-subtitle { font-size: 18px; max-width: 700px; margin: 0 auto; opacity: 0.9; }
.success-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; margin-bottom: 80px; }
.success-grid .success-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.04); transition: transform 0.3s ease; }
.success-grid .success-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.success-thumbnail img { width: 100%; height: 300px; object-fit: cover; }
.success-content { padding: 25px; text-align: center; }
.success-content h2 { font-size: 22px; margin-bottom: 10px; }
.success-content h2 a { color: #1a202c; }
.success-content h2 a:hover { color: var(--primary-color); }
.success-meta { color: var(--accent-color); font-weight: 600; margin-bottom: 15px; display: block; }
.success-excerpt { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }

/* Single Basari */
.success-single-header { background-color: var(--primary-color); padding: 60px 0; margin-bottom: 50px; text-align: center; color: #fff; }
.success-single-title { font-size: 42px; color: #fff; margin-bottom: 15px; }
.success-breadcrumb { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.success-breadcrumb a { color: #fff; font-weight: 600; text-decoration: underline; }
.success-single-content { max-width: 800px; margin: 0 auto 60px auto; background: #fff; padding: 50px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.success-single-image { margin-bottom: 40px; text-align: center; }
.success-single-image img { border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); max-width: 100%; height: auto; }
.success-single-content h2, .success-single-content h3 { color: var(--primary-color); margin-top: 30px; margin-bottom: 15px; }
.success-single-content p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; color: var(--text-color); }
.success-single-content blockquote { background: var(--bg-light); border-left: 5px solid var(--accent-color); padding: 20px 30px; margin: 30px 0; font-size: 18px; font-style: italic; border-radius: 0 8px 8px 0; }
.success-cta { background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%); text-align: center; padding: 60px 30px; border-radius: 16px; margin-bottom: 80px; border: 1px solid var(--border-color); }
.success-cta h3 { font-size: 30px; color: #1a202c; margin-bottom: 15px; }
.success-cta p { font-size: 18px; color: var(--text-light); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== RANDEVU ===== */
.randevu-header { background-color: var(--bg-light); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 60px; }
.randevu-title { font-size: 40px; color: #1a202c; margin-bottom: 15px; }
.randevu-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.randevu-wrap { display: flex; flex-wrap: wrap; gap: 50px; margin-bottom: 80px; }
.randevu-form-col { flex: 3; min-width: 350px; }
.randevu-info-col { flex: 2; min-width: 280px; }
.randevu-card { background: #fff; padding: 35px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; }
.randevu-card h3 { font-size: 22px; margin-bottom: 10px; color: #1a202c; }
.randevu-card p { color: var(--text-light); margin-bottom: 25px; }
.rf-group { margin-bottom: 20px; }
.rf-group label { display: block; font-weight: 500; margin-bottom: 8px; color: #1a202c; }
.rf-group input, .rf-group select, .rf-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ccd0d4; border-radius: 6px; font-family: inherit; font-size: 15px; transition: border-color .2s; }
.rf-group input:focus, .rf-group select:focus, .rf-group textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 2px rgba(39,174,96,0.15); }
.rf-saat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 10px; }
.rf-saat-btn { padding: 10px; border: 2px solid #e2e4e7; border-radius: 8px; background: #fff; cursor: pointer; font-size: 14px; font-weight: 500; transition: all .2s; text-align: center; }
.rf-saat-btn:hover { border-color: var(--primary-color); background: #f0faf4; }
.rf-saat-btn.selected { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.rf-saat-btn:disabled { opacity: .4; cursor: not-allowed; background: #f0f0f1; border-color: #ddd; }
.rf-yukleniyor { text-align: center; padding: 30px; color: var(--text-light); }
.rf-yukleniyor span { animation: rf-spin 1s linear infinite; display: inline-block; }
@keyframes rf-spin { 100% { transform: rotate(360deg); } }
.rf-basari { text-align: center; padding: 60px 30px; }
.rf-basari .icon { font-size: 64px; margin-bottom: 20px; display: block; }
.rf-basari h3 { font-size: 28px; color: var(--primary-color); margin-bottom: 15px; }
.rf-basari p { color: var(--text-light); font-size: 16px; max-width: 500px; margin: 0 auto 25px; }
.ri-box { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #e2e4e7; }
.ri-box:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ri-box h4 { font-size: 16px; color: var(--primary-color); margin-bottom: 8px; }
.ri-box p, .ri-box li { color: #50575e; font-size: 14px; line-height: 1.7; }
.ri-box ul { list-style: none; padding: 0; margin: 0; }
.ri-box ul li::before { content: "\2713 "; color: var(--primary-color); font-weight: 700; }

/* ===== İLETİŞİM ===== */
.contact-header { background-color: var(--bg-light); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 60px; }
.contact-title { font-size: 40px; color: #1a202c; margin-bottom: 15px; }
.contact-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.contact-container { display: flex; flex-wrap: wrap; gap: 50px; margin-bottom: 80px; }
.contact-info-box { flex: 1; min-width: 300px; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-info-item { margin-bottom: 30px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 10px; }
.contact-info-item p, .contact-info-item a { font-size: 16px; color: var(--text-color); }
.contact-info-item a:hover { color: var(--accent-color); }
.contact-form-box { flex: 2; min-width: 350px; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-form-box h3 { font-size: 24px; margin-bottom: 25px; }
.contact-form-group { margin-bottom: 20px; }
.contact-form-group label { display: block; font-weight: 500; margin-bottom: 8px; }
.contact-form-group input, .contact-form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ccd0d4; border-radius: 6px; font-family: inherit; }
.contact-form-group input:focus, .contact-form-group textarea:focus { border-color: var(--primary-color); outline: none; }
.contact-map { width: 100%; height: 400px; background: #eee; border-radius: 12px; margin-bottom: 60px; overflow: hidden; }

/* ===== BLOG (index, single, search, 404) ===== */
.blog-layout { display: flex; gap: 50px; margin-bottom: 60px; }
.blog-main { flex: 3; min-width: 280px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.blog-grid .blog-card { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: transform 0.3s; }
.blog-grid .blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.blog-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 20px; }
.blog-title { font-size: 20px; margin-bottom: 10px; }
.blog-grid .blog-title a { color: #1a202c; }
.blog-grid .blog-title a:hover { color: var(--primary-color); }
.blog-excerpt { color: var(--text-light); font-size: 15px; margin-bottom: 15px; }
.blog-grid .read-more { font-weight: 600; color: var(--primary-color); }
.pagination { display: flex; justify-content: center; gap: 10px; margin: 40px 0 60px; }
.pagination .page-numbers { padding: 8px 15px; border: 1px solid var(--border-color); border-radius: 4px; color: var(--text-color); }
.pagination .current { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }

.blog-sidebar { flex: 1; min-width: 250px; }
.sidebar-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 25px; margin-bottom: 25px; }
.sidebar-card h3 { font-size: 18px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.sidebar-card ul li a { color: #475569; }
.sidebar-card ul li a:hover { color: var(--primary-color); }
.sidebar-card .tagcloud a { display: inline-block; padding: 4px 12px; background: var(--bg-light); border-radius: 4px; font-size: 13px; color: #475569; margin: 3px; }
.sidebar-card .tagcloud a:hover { background: var(--primary-color); color: #fff; }

/* ---- Page Header (blog) ---- */
.page-header { background-color: var(--bg-light); padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 60px; }
.page-title { font-size: 36px; color: #1a202c; }

/* ---- Single Post ---- */
.single-header { text-align: center; max-width: 800px; margin: 60px auto 40px auto; }
.single-title { font-size: 42px; color: #1a202c; margin-bottom: 20px; }
.single-meta { color: var(--text-light); font-size: 14px; display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.single-meta span { display: inline-flex; align-items: center; }
.single-featured-image { max-width: 1000px; margin: 0 auto 50px auto; }
.single-featured-image img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.single-content-wrap { max-width: 800px; margin: 0 auto 80px auto; }
.post-tags { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.post-tags a { display: inline-block; background: var(--bg-light); padding: 5px 15px; border-radius: 20px; font-size: 13px; margin-right: 10px; margin-bottom: 10px; }
.post-navigation { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 30px; border-top: 2px solid var(--bg-light); }
.post-navigation a { font-weight: 600; }

/* ---- Search ---- */
.search-header { background: var(--bg-light); padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-color); margin-bottom: 50px; }
.search-title { font-size: 32px; color: #1a202c; }
.search-query { color: var(--primary-color); }
.search-wrap { display: flex; gap: 50px; margin-bottom: 80px; }
.search-main { flex: 3; min-width: 280px; }
.search-count { margin-bottom: 30px; font-size: 16px; color: var(--text-light); }

/* ---- 404 ---- */
.error-wrap { text-align: center; padding: 120px 20px 100px; max-width: 600px; margin: 0 auto; }
.error-code { font-size: 120px; font-weight: 800; color: var(--primary-color); line-height: 1; margin-bottom: 10px; }
.error-title { font-size: 32px; color: #1a202c; margin-bottom: 15px; }
.error-desc { color: var(--text-light); font-size: 18px; margin-bottom: 35px; }

/* ===== PAKETLER / PRICING PAGE ===== */
.pricing-header { background: var(--bg-light); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.pricing-title { font-size: 40px; color: #1a202c; margin-bottom: 15px; }
.pricing-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 60px 0 80px; align-items: start; }
.pricing-page .pricing-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: transform .3s; position: relative; }
.pricing-page .pricing-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.pricing-page .pricing-card.featured { border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(39,174,96,0.12); transform: scale(1.03); }
.pricing-page .pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-page .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #fff; padding: 6px 20px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.pricing-page .pricing-name { font-size: 22px; color: #1a202c; margin-bottom: 5px; }
.pricing-page .pricing-desc { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.pricing-page .pricing-amount { font-size: 48px; font-weight: 800; color: #1a202c; }
.pricing-page .pricing-currency { font-size: 24px; vertical-align: super; }
.pricing-page .pricing-period { font-size: 16px; color: var(--text-light); }
.pricing-page .pricing-features { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.pricing-page .pricing-features li { padding: 10px 0; border-bottom: 1px solid #f1f5f9; color: #475569; font-size: 15px; }
.pricing-page .pricing-features li::before { content: "\2713 "; color: var(--primary-color); font-weight: 700; }

/* ===== SSS / FAQ PAGE ===== */
.faq-header { background: var(--bg-light); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.faq-title { font-size: 40px; color: #1a202c; margin-bottom: 15px; }
.faq-subtitle { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.faq-wrap { max-width: 800px; margin: 60px auto 80px; }
.faq-wrap .faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: box-shadow .3s; }
.faq-wrap .faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.faq-wrap .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; font-weight: 600; font-size: 17px; color: #1a202c; transition: background .2s; }
.faq-wrap .faq-question:hover { background: #f8fafc; }
.faq-wrap .faq-question::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--primary-color); transition: transform .3s; flex-shrink: 0; margin-left: 15px; }
.faq-wrap .faq-item.open .faq-question::after { content: '\2212'; }
.faq-wrap .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 25px; }
.faq-wrap .faq-item.open .faq-answer { max-height: 500px; padding: 0 25px 25px; }
.faq-wrap .faq-answer p { color: #475569; font-size: 16px; line-height: 1.7; margin: 0; }

/* ===== HAKKIMIZDA ===== */
.about-hero { position: relative; min-height: 450px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.about-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.about-hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%); }
.about-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px 20px; }
.about-hero h1 { font-size: 52px; color: #fff; font-weight: 800; margin-bottom: 20px; text-shadow: 0 2px 15px rgba(0,0,0,0.3); }
.about-hero p { font-size: 20px; color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto; line-height: 1.7; }
.about-philosophy { padding: 100px 0; background: #fff; }
.about-philosophy-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.about-philosophy-text { flex: 1; min-width: 300px; }
.about-philosophy-text h2 { font-size: 38px; color: #1a202c; margin-bottom: 25px; line-height: 1.2; }
.about-philosophy-text h2 span { color: var(--primary-color); }
.about-philosophy-text p { font-size: 17px; color: var(--text-light); line-height: 1.8; }
.about-philosophy-image { flex: 1; min-width: 300px; }
.about-philosophy-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-team { padding: 100px 0; background: var(--bg-light); text-align: center; }
.about-team h2 { font-size: 38px; color: #1a202c; margin-bottom: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.team-card { background: #fff; border-radius: 16px; padding: 35px 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.3s ease; border: 1px solid transparent; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.team-card img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; box-shadow: 0 10px 25px rgba(39,174,96,0.15); }
.team-card h3 { font-size: 22px; color: #1a202c; margin-bottom: 5px; }
.team-card .team-role { font-weight: 600; color: var(--primary-color); font-size: 14px; margin-bottom: 15px; display: block; }
.team-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; margin: 0; }
.about-mv { padding: 100px 0; background: #fff; }
.about-mv-grid { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.about-mv-box { flex: 1; min-width: 300px; background: var(--bg-light); padding: 50px 40px; border-radius: 16px; text-align: center; border-bottom: 5px solid var(--primary-color); transition: 0.3s; }
.about-mv-box:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.about-mv-box:last-child { border-bottom-color: var(--accent-color); }
.about-mv-icon { width: 70px; height: 70px; background: rgba(39,174,96,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 32px; }
.about-mv-box h3 { font-size: 24px; margin-bottom: 20px; color: #1a202c; }
.about-mv-box p { color: var(--text-light); line-height: 1.7; margin: 0; font-size: 16px; }
.about-timeline { padding: 100px 0; background: var(--bg-light); }
.about-timeline h2 { text-align: center; font-size: 38px; color: #1a202c; margin-bottom: 60px; }
.timeline-wrap { max-width: 800px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline-wrap::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 3px; background: var(--primary-color); border-radius: 2px; opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 40px; padding-left: 30px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -33px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary-color); border: 4px solid var(--bg-light); box-shadow: 0 0 0 3px var(--primary-color); }
.timeline-year { display: inline-block; font-weight: 800; font-size: 22px; color: var(--primary-color); margin-bottom: 8px; }
.timeline-item h4 { font-size: 20px; color: #1a202c; margin-bottom: 10px; }
.timeline-item p { color: var(--text-light); line-height: 1.7; margin: 0; }
.about-stats { padding: 80px 0; background: var(--primary-color); text-align: center; }
.about-stats-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.about-stat-item { flex: 1; min-width: 180px; max-width: 260px; padding: 20px; }
.about-stat-item h4 { font-size: 48px; margin: 0 0 10px 0; color: #fff; font-weight: 800; }
.about-stat-item p { font-size: 16px; margin: 0; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }
.about-reviews { padding: 100px 0; background: #fff; }
.about-reviews h2 { text-align: center; font-size: 38px; color: #1a202c; margin-bottom: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.review-card { background: var(--bg-light); padding: 30px; border-radius: 16px; border-left: 4px solid var(--primary-color); transition: 0.3s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.review-card .review-text { font-style: italic; font-size: 15px; line-height: 1.7; color: var(--text-color); margin-bottom: 20px; }
.review-card .review-author { font-weight: 600; color: var(--primary-color); }
.about-cta { padding: 80px 0; background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%); text-align: center; }
.about-cta h2 { font-size: 38px; color: #fff; margin-bottom: 20px; }
.about-cta .btn { padding: 16px 45px; font-size: 18px; box-shadow: 0 10px 20px rgba(39,174,96,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .site-navigation { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-menu-overlay { display: block; }
    .header-cta-btn { padding: 10px 20px; font-size: 14px; }
}

@media (max-width: 768px) {
    .hero-advanced h1 { font-size: 34px; }
    .hero-advanced p { font-size: 17px; }
    .hp-about-grid { flex-direction: column; text-align: center; }
    .hp-blog-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .about-hero h1 { font-size: 34px; }
    .about-hero p { font-size: 17px; }
    .about-philosophy-inner { flex-direction: column; }
    .about-stat-item h4 { font-size: 36px; }
    .timeline-wrap { padding-left: 30px; }
    .service-single-header-inner { flex-direction: column; }
    .randevu-header { padding: 50px 0; }
    .randevu-title { font-size: 28px; }
    .randevu-form-col, .randevu-info-col { min-width: 100%; }
    .rf-saat-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
    .faq-title { font-size: 28px; }
    .faq-question { font-size: 15px; padding: 15px 18px; }
    .pricing-title { font-size: 28px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .dp-slide-content h2 { font-size: 32px; }
    .dp-slide-content p { font-size: 16px; }
    .dp-slider-arrow { width: 40px; height: 40px; font-size: 18px; }
    .dp-slider-prev { left: 10px; }
    .dp-slider-next { right: 10px; }
    .blog-layout { flex-direction: column; }
    .search-wrap { flex-direction: column; }
    .error-code { font-size: 80px; }
    .error-title { font-size: 24px; }
}

/* ===== COMMENTS ===== */
.comments-area { margin-top: 50px; padding-top: 30px; border-top: 2px solid #f0f0f1; }
.comments-title { font-size: 22px; margin-bottom: 25px; color: #1a202c; }
.comment-list { list-style: none; padding: 0; margin: 0 0 30px; }
.comment-item { margin-bottom: 15px; }
.comment-navigation { margin-bottom: 30px; display: flex; gap: 15px; }
.comment-navigation a { color: var(--primary-color); font-weight: 500; }
.no-comments { color: #646970; font-style: italic; }

/* Comment form */
#respond { margin-top: 30px; padding: 30px; background: #f9fafb; border-radius: 12px; }
#reply-title { font-size: 20px; margin: 0 0 20px; color: #1a202c; }
#cancel-comment-reply-link { font-size: 13px; font-weight: 400; color: #d63638; margin-left: 10px; }
.comment-form { display: flex; flex-direction: column; }
.comment-form .comment-form-author,
.comment-form .comment-form-email { display: inline-block; width: 48%; }
.comment-form .comment-form-author { float: left; }
.comment-form .comment-form-email { float: right; }
.comment-form .comment-form-url { clear: both; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 14px; box-sizing: border-box; transition: border-color 0.2s; }
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(39,174,96,0.1); }
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form .form-submit { margin-top: 15px; }
.comment-form .submit { background: var(--primary-color); color: #fff; padding: 14px 32px; border: none; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.comment-form .submit:hover { background: #1e8449; transform: translateY(-2px); }
.comment-notes { font-size: 13px; color: #646970; margin-bottom: 20px; }
.logged-in-as { font-size: 13px; color: #646970; margin-bottom: 20px; }
.logged-in-as a { color: var(--primary-color); }
.comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; font-size: 13px; color: #646970; clear: both; padding-top: 15px; }
.comment-form-cookies-consent input[type="checkbox"] { width: auto; }
.comment-reply-link { color: var(--primary-color); font-size: 13px; font-weight: 600; text-decoration: none; }
.comment-reply-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { flex-direction: column; }
    .blog-card-img { flex: none; }
    .blog-card-img img { height: 200px; }
    .comment-form .comment-form-author,
    .comment-form .comment-form-email { width: 100%; float: none; }
}
