:root {
    --primary-color: #4A635D;
    --secondary-color: #F4F1EA;
    --accent-color: #D4A373;
    --text-dark: #333;
    --white: #ffffff;
    --green-wa: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Lora', serif; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVIGATION */
nav { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-main { font-size: 1rem; font-weight: 800; color: var(--primary-color); letter-spacing: 1px; }
.logo-sub { font-size: 1rem; font-weight: 300; color: var(--accent-color); }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; padding: 5px; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--text-dark); margin-left: 20px; font-size: 0.8rem; font-weight: 600; transition: 0.3s; }
.nav-btn { background: var(--primary-color); color: white !important; padding: 8px 18px; border-radius: 50px; }

/* HERO */
.hero { padding: 80px 0; background-color: #fdfdfd; }
.hero-flex { display: flex; align-items: center; gap: 50px; }
.hero-image img { width: 100%; max-width: 400px; border-radius: 20px; box-shadow: 15px 15px 0px var(--secondary-color); }
.hero-content h1 { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
.cta-button { display: inline-block; background: var(--green-wa); color: white; padding: 15px 30px; text-decoration: none; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }

/* ABOUT */
.about { background: var(--secondary-color); padding: 90px 0; }
.about-text { max-width: 850px; margin: 0 auto; line-height: 1.8; text-align: justify; }
.about-text p { margin-bottom: 20px; color: #444; }
.privacy-box { background: white; padding: 25px; border-radius: 15px; margin-top: 30px; display: flex; align-items: center; gap: 20px; border-left: 5px solid var(--accent-color); }

/* SERVICES (PC ŞIKLIĞI) */
.services { padding: 90px 0; }
.service-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.detail-card { background: white; padding: 40px 30px; border-radius: 20px; border: 1px solid #f0f0f0; text-align: center; transition: 0.4s; }
.detail-card:hover { transform: translateY(-10px); border-color: var(--accent-color); box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.card-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; }
.privacy-tag { display: block; margin-top: 25px; font-size: 0.75rem; font-weight: 700; color: var(--accent-color); }

/* FAQ & CONTACT */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { background: #fafafa; margin-bottom: 12px; border-radius: 12px; border: 1px solid #eee; overflow: hidden; }
.faq-item summary { padding: 20px; font-weight: 600; cursor: pointer; list-style: none; position: relative; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; }
.c-card { background: var(--secondary-color); padding: 25px; border-radius: 15px; display: flex; align-items: center; gap: 15px; }
.map-area { border-radius: 20px; overflow: hidden; min-height: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* MOBILE RESPONSIVE (FIXED) */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 15px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links li a { margin: 15px 0; font-size: 1.1rem; margin-left: 0; display: block; }
    
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.3rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .c-card { flex-direction: column; text-align: center; }
}