* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; line-height: 1.6; }

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

/* Header */
.header { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 20px; }
.logo { text-decoration: none; }
.logo__text { font-size: 28px; font-weight: 900; color: #1A237E; }
.logo__text span { color: #1565C0; }
.nav { display: flex; gap: 30px; }
.nav__link { text-decoration: none; color: #555; font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav__link:hover { color: #1A237E; }
.header__phone { background: #E8EAF6; padding: 8px 16px; border-radius: 8px; }
.header__phone i { color: #1A237E; margin-right: 8px; }
.header__phone a { text-decoration: none; color: #1A237E; font-weight: 600; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: #333; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #1565C0 100%); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; opacity: 0.05; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: 42px; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; line-height: 1.6; }
.hero__buttons { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; }
.stat { text-align: center; }
.stat__num { display: block; font-size: 28px; font-weight: 800; }
.stat__label { font-size: 14px; opacity: 0.8; }

/* Buttons */
.btn { display: inline-block; padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: #1A237E; color: #fff; }
.btn-primary:hover { background: #283593; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(26,35,126,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Sections */
section { padding: 80px 0; }
.section__title { font-size: 32px; font-weight: 800; color: #1A237E; text-align: center; margin-bottom: 16px; }
.section__sub { text-align: center; color: #888; font-size: 16px; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* SEO Section */
.seo-section { background: #f8f9fa; text-align: center; }
.seo-text { max-width: 900px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: #555; }

/* Services Grid */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; }
.service-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: 0.3s; text-align: center; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.service-card__icon { width: 70px; height: 70px; border-radius: 50%; background: #E8EAF6; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.service-card__icon i { font-size: 30px; color: #1A237E; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 14px; line-height: 1.6; }
.service-card__price { margin-top: 15px; color: #1A237E; font-weight: 700; font-size: 16px; }

/* About */
.about { background: #f8f9fa; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about__image img { width: 100%; border-radius: 16px; }
.about__content p { color: #555; line-height: 1.8; margin-bottom: 20px; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature { display: flex; align-items: center; gap: 10px; color: #333; font-weight: 500; }
.feature i { color: #43A047; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.step-item { background: #fff; padding: 40px 20px; border-radius: 16px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.step-item__num { width: 60px; height: 60px; border-radius: 50%; background: #1A237E; color: #fff; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-item h3 { margin-bottom: 10px; }
.step-item p { color: #666; font-size: 14px; }

/* Testimonials */
.testimonials { background: #f8f9fa; }
.testimonials__slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.testimonial-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.testimonial-card__stars { color: #FFC107; margin-bottom: 15px; }
.testimonial-card p { color: #555; line-height: 1.6; margin-bottom: 15px; font-style: italic; }
.testimonial-card__author { color: #888; font-weight: 600; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.contact__item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact__item i { font-size: 24px; color: #1A237E; width: 40px; }
.contact__item strong { display: block; color: #333; }
.contact__item a { color: #555; text-decoration: none; }
.contact__form input { width: 100%; padding: 12px 16px; border: 2px solid #E0E0E0; border-radius: 10px; margin-bottom: 15px; font-size: 15px; }
.contact__form input:focus { border-color: #1A237E; outline: none; }
.contact__map { margin-top: 20px; border-radius: 16px; overflow: hidden; }

/* Footer */
.footer { background: #1A237E; color: #fff; padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer h3 { margin-bottom: 20px; font-size: 18px; }
.footer p { opacity: 0.8; line-height: 1.6; font-size: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.footer ul li a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: center; }
.footer__contact i { width: 20px; }
.footer__social { display: flex; gap: 10px; margin-top: 15px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: 0.3s; }
.footer__social a:hover { background: rgba(255,255,255,0.2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; text-align: center; font-size: 14px; opacity: 0.7; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 1000; transition: 0.3s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.4); }

/* Responsive */
@media(max-width: 768px) {
    .nav, .header__phone { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 28px; }
    .hero__stats { flex-wrap: wrap; gap: 20px; }
    .about__inner, .contact__grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .section__title { font-size: 26px; }
}

/* Badge status */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-bekliyor { background: #FFF3E0; color: #E65100; }
.badge-incelemede { background: #E3F2FD; color: #1565C0; }
.badge-fiyat_verildi { background: #E8F5E9; color: #2E7D32; }
.badge-onaylandi { background: #E0F7FA; color: #00838F; }
.badge-islemde { background: #F3E5F5; color: #7B1FA2; }
.badge-tamamlandi { background: #E8F5E9; color: #1B5E20; }
.badge-iptal { background: #FFEBEE; color: #C62828; }