/* --- ayder uygulama web sitesi ayder.app 2026 --- */
:root {
    --primary-green: #1A3626;
    --accent-gold: #C5A365;
    --text-dark: #1E293B;
	--text-gray: #343453;
    --text-light: #64748B;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; background-color: var(--white); }
.container { max-width: 1320px; width: 100%; margin: 0 auto; padding: 0 20px; }
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-weight: 800; font-size: 24px; color: var(--primary-green); text-decoration: none; }
.nav-btn { background: var(--primary-green); color: var(--white); padding: 10px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.hero-section { position: relative; display: flex; align-items: center; height: 100vh; max-height: 800px; min-height: 550px; padding-top: 140px; overflow: hidden; background: #000; }
.hero-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images/pokut-yaylasi.webp'); background-size: cover; background-position: center; filter: blur(5px) brightness(0.9); transform: scale(1.1); z-index: 1; }
.hero-container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content h1 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; margin-bottom: 20px; color: var(--white); text-shadow:0 0 5px #212121;}
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; }
.store-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge-btn { display: flex; align-items: center; background: #000000; color: #ffffff; padding: 10px 20px; border-radius: 12px; text-decoration: none; transition: 0.3s; }
.badge-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.badge-btn i { font-size: 28px; margin-right: 12px; }
.play-btn i { color: #10B981; }
.badge-text span { display: block; font-size: 10px; opacity: 0.8; }
.badge-text strong { display: block; font-size: 20px; line-height: 1.2; }
.hero-mockup { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.hero-mockup img { max-width: 100%; height: auto; max-height: 550px;}
@media (max-width: 968px) { .hero-section { max-height: none; height: auto; padding: 140px 0 60px; } .hero-container { flex-direction: column; text-align: center; } .hero-content { margin: 0 auto; } .store-badges { justify-content: center; } .hero-mockup { justify-content: center; margin-top: 40px; } }
.categories-section { background: linear-gradient(135deg, var(--primary-green) 0%, #0c1a12 100%); padding: 100px 0; color: var(--white); }
.categories-container { display: flex; flex-direction: column; gap: 50px; }
.section-header.text-center { text-align: center; max-width: 650px; margin: 0 auto; }
.sub-title { display: inline-block; color: var(--text-gray); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 15px; line-height: 1.2; }
.section-header p { font-size: 17px; color: rgba(255,255,255,0.7); margin: 0; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.cat-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); padding: 35px 25px; border-radius: 20px; transition: all 0.3s ease; text-align: center; backdrop-filter: blur(10px); }
.cat-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); }
.cat-icon { width: 60px; height: 60px; background: rgba(197, 163, 101, 0.15); color: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 15px; transition: 0.3s; }
.cat-card:hover .cat-icon { background: var(--accent-gold); color: var(--primary-green); }
.cat-card h3 { font-size: 19px; color: var(--white); margin-bottom: 10px; }
.cat-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }
.weather-section { padding: 100px 0; background: var(--bg-light); display: flex; justify-content: center; }
.weather-container { max-width: 800px; width: 100%; }
.weather-header { text-align: center; margin-bottom: 40px; }
.weather-header h2 { font-size: clamp(28px, 4vw, 40px); color: var(--primary-green); margin-bottom: 10px; line-height: 1.2; }
.weather-card { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.current-weather { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.cw-info h3 { font-size: 72px; font-weight: 800; color: var(--text-dark); margin: 0; line-height: 1; letter-spacing: -2px; }
.cw-info p { font-size: 22px; color: var(--primary-green); font-weight: 600; margin: 5px 0; text-transform: capitalize; }
.cw-info span { font-size: 15px; color: var(--text-light); }
.cw-icon { width: 110px; height: 110px; background: rgba(197, 163, 101, 0.15); color: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 55px; }
.weather-divider { border: none; height: 1px; background: rgba(0,0,0,0.08); margin: 0 0 30px 0; }
.forecast-grid { display: flex; justify-content: space-between; gap: 15px; flex-wrap: wrap; }
.forecast-item { flex: 1; min-width: 120px; text-align: center; background: var(--bg-light); padding: 25px 10px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: 0.3s; color: var(--text-dark); cursor: default; }
.forecast-item:hover { background: var(--primary-green); color: var(--white); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(26,54,38,0.15); }
.forecast-item span { font-size: 16px; font-weight: 600; opacity: 0.9; }
.forecast-item i { font-size: 32px; color: var(--accent-gold); }
.forecast-item strong { font-size: 22px; font-weight: 800; }
.planner-section { padding: 120px 0; background: var(--white); overflow: hidden; }
.planner-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.planner-content { flex: 1; max-width: 550px; }
.planner-content .sub-title { display: inline-flex; align-items: center; gap: 8px; color: var(--text-gray); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.planner-content h2 { font-size: clamp(32px, 4vw, 44px); color: var(--primary-green); margin-bottom: 20px; line-height: 1.2; }
.planner-content p { font-size: 18px; color: var(--text-light); margin-bottom: 30px; }
.planner-features { list-style: none; margin-bottom: 40px; }
.planner-features li { display: flex; align-items: flex-start; gap: 15px; font-size: 16px; color: var(--text-dark); margin-bottom: 15px; font-weight: 500; }
.planner-features i { color: #10B981; font-size: 24px; line-height: 1; }
.planner-visual { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.plan-timeline { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 500px; position: relative; }
.plan-timeline::before { content: ''; position: absolute; left: 30px; top: 20px; bottom: 20px; width: 2px; background: rgba(197, 163, 101, 0.3); z-index: 1; }
.plan-card { display: flex; align-items: center; gap: 20px; background: var(--bg-light); padding: 20px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; z-index: 2; transition: 0.3s; border: 1px solid rgba(0,0,0,0.02); cursor: default; }
.plan-card:hover { transform: translateX(-10px); border-color: var(--accent-gold); background: var(--white); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.plan-time { width: 60px; height: 60px; background: var(--primary-green); color: var(--accent-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; border: 4px solid var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.plan-detail h4 { font-size: 18px; color: var(--text-dark); margin-bottom: 5px; }
.plan-detail span { font-size: 14px; color: var(--text-light); line-height: 1.5; display: block; }
@media (max-width: 968px) { .planner-container { flex-direction: column; } .planner-visual { width: 100%; justify-content: center; margin-top: 30px; } .plan-timeline { max-width: 100%; } }
.map-section { padding: 120px 0; background: #f4f7fe; overflow: hidden; }
.map-container { display: flex; align-items: center; gap: 80px; }
.map-visual { flex: 1; position: relative; }
.map-mockup { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(75, 123, 236, 0.15); border: 10px solid var(--white); }
.map-mockup img { width: 100%; height: auto; display: block; filter: saturate(0.8); }
.map-pin { position: absolute; width: 40px; height: 40px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); animation: pinJump 2s infinite ease-in-out; }
.map-pin i { font-size: 20px; }
.pin-1 { top: 20%; left: 30%; color: #eb4d4b; animation-delay: 0s; }
.pin-2 { top: 50%; left: 60%; color: var(--accent-gold); animation-delay: 0.5s; }
.pin-3 { top: 70%; left: 20%; color: #4b7bec; animation-delay: 1s; }
@keyframes pinJump { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.map-content { flex: 1; }
.sub-title.blue-tag { color: #212121; background: rgba(75, 123, 236, 0.1); padding: 6px 15px; border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.sub-title.white-tag { color: #111111; background: rgba(255, 255, 255, 0.9); padding: 6px 15px; border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.map-content h2 { font-size: clamp(32px, 4vw, 44px); color: var(--primary-green); margin-bottom: 20px; line-height: 1.2; }
.map-content p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; }
.map-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.m-feat i { font-size: 36px; color: #4b7bec; margin-bottom: 15px; display: block; }
.m-feat strong { font-size: 18px; color: var(--text-dark); display: block; margin-bottom: 8px; }
.m-feat span { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
@media (max-width: 968px) { .map-container { flex-direction: column-reverse; text-align: center; } .map-features-grid { grid-template-columns: 1fr; } .map-mockup { max-width: 400px; margin: 0 auto; } }
.showcase-split-section { padding: 120px 0; background: var(--white); }
.showcase-split-container { display: flex; align-items: center; gap: 60px; }
.showcase-text-area { flex: 1; max-width: 500px; }
.showcase-text-area .sub-title { display: inline-block; color: var(--text-gray); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.showcase-text-area h2 { font-size: clamp(32px, 4vw, 44px); color: var(--primary-green); margin-bottom: 20px; line-height: 1.2; }
.showcase-text-area p { font-size: 18px; color: var(--text-light); margin-bottom: 40px; }
.showcase-bento-grid { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 20px; }
.bento-item { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; cursor: default; }
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.bento-item:hover img { transform: scale(1.05); }
.bento-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(26,54,38,0.9) 0%, transparent 100%); color: var(--white); z-index: 2; }
.bento-info span { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-gold); margin-bottom: 5px; }
.bento-info h4 { font-size: 20px; margin: 0; font-weight: 700; }
.bento-large { grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
@media (max-width: 968px) { .showcase-split-container { flex-direction: column; } .showcase-text-area { max-width: 100%; text-align: center; } .showcase-text-area .store-badges { justify-content: center; } .showcase-bento-grid { width: 100%; } }
.site-footer { background: var(--primary-green); color: var(--white); padding: 100px 0 40px; text-align: center; }
.footer-container { display: flex; flex-direction: column; align-items: center; }
.footer-cta { max-width: 600px; margin-bottom: 80px; }
.footer-cta h2 { font-size: clamp(32px, 4vw, 44px); color: var(--accent-gold); margin-bottom: 15px; }
.footer-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.qr-box { background: var(--white); padding:8px; border-radius: 14px; display: inline-block; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.qr-box img { width: 220px; height: 220px; display: block; }
.footer-badges { justify-content: center; }
.footer-btn { border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.3); }
.footer-btn:hover { background: var(--white); color: var(--primary-green); }
.footer-bottom { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-weight: 800; font-size: 24px; color: #ffffff; opacity: 0.5; }
.footer-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: rgba(255,255,255,0.99); text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-gold); }
.copyright { font-size: 13px; color: rgba(255,255,255,0.99); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.faq-section { padding: 80px 0; background-color: #0b0f19; }
.faq-container { max-width: 1200px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.05); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 22px 25px; font-size: 17px; font-weight: 600; color: var(--white); cursor: pointer; list-style: none; transition: all 0.3s ease; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { font-size: 20px; color: #60a5fa; transition: transform 0.3s ease; }
.faq-item[open] summary { border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: #60a5fa; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item .faq-content { padding: 20px 25px 25px; font-size: 16px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }