/* --- CSS DOSYASININ TAMAMI (SON HALİ) --- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Nunito:wght@400;600;700&display=swap');

:root {
    /* --- RENK PALETİ --- */
    --primary: #FFD23F;   /* Sarı (Zaman, Yıldızlar) */
    --secondary: #EE4266; /* Pembe (CTA, Butonlar) */
    --aqua: #00D2BD;      /* Turkuaz (Genel Tema, Ferahlık) */
    --purple: #8338EC;    /* Mor (Ekipman, Detaylar) */
    --blue: #3A86FF;      /* Mavi (Güven) */
    --green: #2ecc71;     /* Yeşil (Doğa Dostu - Daha Canlı Bir Yeşil Seçtim) */
    --dark: #2B2D42;      /* Koyu Lacivert (Yazılar) */
    --light: #F8F9FA;     /* Açık Arka Plan */
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo, .btn-nav, .btn-primary, .btn-card, .counter-number {
    font-family: 'Montserrat', sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- GİRİŞ SİLME EFEKTİ --- */
#scratch-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    cursor: crosshair; transition: opacity 0.8s ease; overflow: hidden;
}
#scratch-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.sparkle {
    position: fixed; width: 20px; height: 20px;
    background: radial-gradient(circle, #fff 10%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 10002;
    animation: sparkleAnim 0.8s linear forwards;
}
@keyframes sparkleAnim {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 0.8; }
    100% { transform: scale(0) rotate(360deg) translateY(50px); opacity: 0; }
}

.scratch-hint {
    position: relative; z-index: 10000; text-align: center;
    background: white; padding: 30px 60px; border-radius: 50px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 6px solid var(--primary); 
    pointer-events: none; animation: popIn 0.5s ease-out;
}
@keyframes popIn { 0% {transform: scale(0);} 80% {transform: scale(1.1);} 100% {transform: scale(1);} }

.scratch-hint h3 { color: var(--dark); font-weight: 900; font-size: 1.8rem; margin-top: 10px; }
.hand-anim { 
    font-size: 4rem; color: var(--secondary); margin-bottom: 10px; 
    display: inline-block; animation: waveHand 2s infinite ease-in-out; 
}
@keyframes waveHand { 0% { transform: rotate(-20deg); } 50% { transform: rotate(20deg); } 100% { transform: rotate(-20deg); } }

.skip-btn {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
    z-index: 10002; background: var(--dark); color: white;
    padding: 12px 30px; border-radius: 30px; font-weight: 900;
    cursor: pointer; border: 3px solid white; transition: 0.3s;
}
.skip-btn:hover { background: var(--secondary); transform: translateX(-50%) scale(1.05); }

/* --- WHATSAPP --- */
.float-whatsapp {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
    background-color: #25d366; color: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 2px 5px 15px rgba(0,0,0,0.2); z-index: 9998;
    transition: 0.3s; animation: pulse 2s infinite; text-decoration: none;
}
.float-whatsapp:hover { background-color: #128C7E; transform: scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 5%;
    background: rgba(255,255,255,0.98); position: sticky; top: 0; z-index: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.logo { font-size: 1.8rem; font-weight: 900; color: var(--dark); letter-spacing: -1px; }
.logo .dot { color: var(--secondary); font-size: 2.5rem; line-height: 0; } 
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 1rem; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--aqua); } 
.btn-nav {
    background: var(--aqua); color: white !important; padding: 0.6rem 1.6rem;
    border-radius: 50px; font-weight: 700 !important; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 210, 189, 0.3); transition: 0.3s;
}
.btn-nav:hover { transform: translateY(-3px); background: var(--dark); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero-section {
    display: flex; align-items: center; padding: 4rem 5%; min-height: 90vh; gap: 50px;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}
.hero-text-box { flex: 1; }
.hero-text-box h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 900; color: var(--dark); }
.hero-text-box .highlight { color: var(--aqua); text-decoration: underline wavy var(--primary); }
.hero-text-box p { font-size: 1.2rem; color: #555; margin-bottom: 2.5rem; max-width: 600px; font-weight: 600; }
.pill-badge { background: var(--primary); color: var(--dark); padding: 6px 15px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; display: inline-block; margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: 15px; }
.btn-primary { background: var(--secondary); color: white; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 800; box-shadow: 0 10px 25px rgba(238, 66, 102, 0.4); transition: 0.3s; }
.btn-secondary { background: white; color: var(--dark); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 800; border: 3px solid #eee; transition: 0.3s; }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-5px); }
.hero-img-box { flex: 1.2; position: relative; height: 500px; }
.hero-img-box img { 
    width: 100%; height: 100%; object-fit: cover; border-radius: 40px; 
    border: 10px solid white; box-shadow: 20px 20px 0 var(--aqua);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-img-box img:hover { transform: scale(1.02) rotate(2deg); }
.float-badge {
    position: absolute; bottom: 30px; left: -30px; background: white; padding: 15px 30px;
    border-radius: 30px; font-weight: 900; font-size: 1.2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px; border: 4px solid var(--secondary); transform: rotate(-2deg);
    transition: 0.3s;
}
.float-badge:hover { transform: rotate(0deg) scale(1.1); }
.float-badge i { color: var(--primary); font-size: 2rem; }

/* --- BAŞLIKLAR --- */
.page-header { padding: 4rem 5%; text-align: center; color: white; margin-bottom: 3rem; border-radius: 0 0 50px 50px; }
.page-header h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -1px; }
.page-header p { font-size: 1.2rem; font-weight: 600; opacity: 0.95; }
.purple-bg { background: linear-gradient(135deg, var(--aqua), var(--blue)); }
.blue-bg { background: linear-gradient(135deg, var(--blue), #256ce1); }
.green-bg { background: linear-gradient(135deg, var(--green), #04a77d); }

/* --- HAKKIMIZDA --- */
.about-section { padding: 4rem 0; }
.about-layout { display: flex; align-items: center; gap: 60px; }
.about-img { flex: 1; height: 450px; }
.about-img img { 
    width: 100%; height: 100%; object-fit: cover; border-radius: 30px; 
    box-shadow: 20px 20px 0 var(--aqua); border: 5px solid var(--dark); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.about-img img:hover { transform: scale(1.02) rotate(-2deg); }
.about-content { flex: 1.2; }
.mag-title { font-size: 3rem; line-height: 1; font-weight: 900; color: var(--dark); margin-bottom: 1.5rem; }
.mag-highlight { color: var(--secondary); display: block; font-size: 2.2rem; }
.lead-text { font-size: 1.3rem; color: var(--aqua); font-weight: 800; margin-bottom: 1.5rem; }
.body-text { font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; font-weight: 600; }
.why-list { list-style: none; margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.why-list li { font-weight: 800; display: flex; align-items: center; gap: 10px; font-size: 1rem; color: var(--dark); }
.why-list i { color: var(--green); font-size: 1.3rem; }

/* --- SAYAÇLAR --- */
.counter-section { padding: 4rem 0; background: white; text-align: center; }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.counter-item { padding: 20px; }
.counter-item i { font-size: 3rem; color: var(--aqua); margin-bottom: 15px; }
.counter-number { font-size: 3.5rem; font-weight: 900; color: var(--dark); display: block; line-height: 1; }
.counter-label { font-size: 1.2rem; font-weight: 700; color: #666; margin-top: 10px; }

/* --- HİZMETLER --- */
.services-section { padding: 4rem 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.srv-card { background: white; border-radius: 25px; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 3px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.srv-card:hover { transform: translateY(-15px) scale(1.01); border-color: var(--secondary); box-shadow: 0 20px 50px rgba(238, 66, 102, 0.15); }
.card-image { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.srv-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--dark); }
.srv-card p { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 1.5rem; font-weight: 600; }
.btn-card { margin-top: auto; display: block; padding: 0.8rem; background: var(--light); color: var(--dark); border-radius: 50px; text-decoration: none; font-weight: 800; text-align: center; transition: 0.3s; }
.btn-card:hover { background: var(--aqua); color: white; }

/* --- SSS (FAQ) --- */
.faq-section { padding: 5rem 0; background: #f8f9fa; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 20px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 3px solid transparent; overflow: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.faq-item:hover { transform: translateY(-7px); border-color: var(--aqua); box-shadow: 0 15px 30px rgba(0, 210, 189, 0.15); }
.faq-question { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 1.2rem; color: var(--dark); transition: 0.3s; background: white; }
.faq-question i { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; color: var(--secondary); transition: 0.4s ease; font-size: 1rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.5s ease-out; padding: 0 30px; color: #666; font-weight: 600; line-height: 1.6; background: #fafafa; opacity: 0; }
.faq-item.active { border-color: var(--primary); }
.faq-item.active .faq-question { color: var(--aqua); }
.faq-item.active .faq-question i { transform: rotate(180deg); background: var(--primary); color: white; }
.faq-item.active .faq-answer { padding: 0 30px 30px 30px; max-height: 300px; opacity: 1; }

/* --- NEDEN BİZ (RENKLİ & BÜYÜK İKONLAR) --- */
.features-section { padding: 5rem 0; background: white; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 3rem; }
.feature-box { 
    padding: 30px; border-radius: 20px; background: #fff; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 2px solid #eee;
    transition: 0.3s;
}
.feature-box i { font-size: 4.5rem; margin-bottom: 25px; transition: 0.3s; }
.feature-box h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--dark); font-weight: 800; }
.feature-box p { color: #666; font-size: 1rem; line-height: 1.6; }

/* 1. Güven (Mavi) */
.feature-box:nth-child(1) i { color: var(--blue); }
.feature-box:nth-child(1):hover { transform: translateY(-10px); border-color: var(--blue); }

/* 2. Ekipman (Mor) */
.feature-box:nth-child(2) i { color: var(--purple); }
.feature-box:nth-child(2):hover { transform: translateY(-10px); border-color: var(--purple); }

/* 3. Doğa (YEŞİL - İSTEĞİN ÜZERİNE) */
.feature-box:nth-child(3) i { color: var(--green); }
.feature-box:nth-child(3):hover { transform: translateY(-10px); border-color: var(--green); }

/* 4. Zaman (Sarı) */
.feature-box:nth-child(4) i { color: var(--primary); }
.feature-box:nth-child(4):hover { transform: translateY(-10px); border-color: var(--primary); }


/* --- ÇAĞRI ŞERİDİ (CTA - PEMBE OLDU) --- */
.cta-section { 
    /* İsteğin üzerine PEMBE */
    background: var(--secondary); 
    padding: 4rem 0; text-align: center; color: white; margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(238, 66, 102, 0.3);
}
.cta-content h2 { 
    font-size: 3rem; margin-bottom: 1rem; 
    color: white; /* Yazı beyaz */
    font-weight: 900; 
    text-transform: uppercase; letter-spacing: -1px;
}
.cta-content p { 
    font-size: 1.4rem; margin-bottom: 2.5rem; 
    opacity: 0.95; font-weight: 700; color: white;
}
.btn-cta { 
    background: white; color: var(--secondary); padding: 1.2rem 3.5rem; 
    border-radius: 50px; text-decoration: none; font-weight: 900; 
    transition: 0.3s; display: inline-block; font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-cta:hover { transform: scale(1.05); background: var(--dark); color: white; }

/* --- YORUMLAR --- */
.reviews-section { padding: 4rem 0; text-align:center; background: var(--light); }
.reviews-title { font-size: 2.5rem; margin-bottom: 3rem; color: var(--dark); font-weight: 900; }
.star-rating { color: var(--primary); margin-top: 10px; font-size: 1.2rem; }

/* --- TEKLİF & İLETİŞİM --- */
.quote-box { background: white; padding: 3rem; border-radius: 30px; box-shadow: 0 25px 60px rgba(0,0,0,0.15); max-width: 700px; margin: -100px auto 0; position: relative; z-index: 10; border: 5px solid var(--primary); }
.form-group label { display: block; font-weight: 800; margin-bottom: 0.5rem; color: var(--dark); font-size: 1.1rem; }
.form-control, .form-select { width: 100%; padding: 1rem; border: 3px solid #eee; border-radius: 15px; font-size: 1rem; font-family: 'Nunito', sans-serif; font-weight: 700; transition: 0.3s; background-color: #fcfcfc; }
.btn-whatsapp-submit { width: 100%; background: #25D366; color: white; padding: 1.2rem; border: none; border-radius: 50px; font-weight: 900; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); margin-top: 1rem; }
.btn-whatsapp-submit:hover { transform: translateY(-5px); background: #20b858; }

.contact-page-section { padding: 4rem 0; }
.contact-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.contact-card-item { background: white; padding: 2.5rem 2rem; border-radius: 30px; text-align: center; width: 350px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: 0.3s; border: 4px solid #f0f0f0; }
.contact-card-item:hover { transform: translateY(-10px); border-color: var(--primary); }
.contact-card-item i { font-size: 3.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-card-item h3 { margin-bottom: 1.5rem; font-weight: 900; font-size: 1.6rem; color: var(--dark); }
.contact-card-item a, .contact-card-item p { color: var(--dark); text-decoration: none; font-size: 1.2rem; font-weight: 800; display: block; margin-bottom: 8px; }
.btn-insta { display: inline-block; padding: 10px 25px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white !important; border-radius: 50px; font-size: 1.1rem !important; margin-top: 10px; text-decoration: none; font-weight: 800; }
.qr-image { width: 150px; height: 150px; margin-top: 15px; border-radius: 15px; border: 3px solid var(--dark); }
.map-container { width: 100%; margin-top: 3rem; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 5px solid white; height: 400px; }

/* --- FOOTER --- */
footer { background-color: white; color: var(--dark); padding-top: 4rem; margin-top: 4rem; border-top: 8px solid var(--aqua); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding-bottom: 3rem; }
.footer-col h3 { color: var(--dark); font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-desc { font-size: 1rem; font-weight: 600; color: #555; line-height: 1.6; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 1rem; transition: 0.3s; }
.footer-links a:hover { color: var(--aqua); padding-left: 5px; }
.footer-contact li { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; font-size: 1rem; font-weight: 700; color: #444; }
.footer-contact i { color: var(--secondary); font-size: 1.3rem; margin-top: 3px; }
.footer-bottom { background: var(--dark); color: white; text-align: center; padding: 1.5rem; font-size: 0.9rem; font-weight: 700; border-radius: 30px 30px 0 0; }

@media (max-width: 992px) {
    .hero-section, .about-layout { flex-direction: column; text-align: center; padding-top: 3rem; }
    .hero-text-box { padding-right: 0; }
    .hero-btns { justify-content: center; }
    .nav-menu { display: none; }
    .burger { display: block; }
    .quote-box { margin: -50px 20px 0; padding: 2rem; }
    .hero-img-box, .about-img { height: 350px; }
}
