/* Alo Usta Teknik Servis - Theme Styles */

:root {
    --c-primary:   #0066FF;
    --c-primary-d: #0050CC;
    --c-cta:       #FF6B35;
    --c-cta-d:     #E5551E;
    --c-dark:      #0A1A3A;
    --c-text:      #1A2540;
    --c-muted:     #5B6B85;
    --c-bg:        #FFFFFF;
    --c-bg-alt:    #F4F7FB;
    --c-border:    #E3E9F2;
    --c-whatsapp:  #25D366;
    --radius:      14px;
    --shadow-sm:   0 2px 8px rgba(10,26,58,.06);
    --shadow-md:   0 8px 30px rgba(10,26,58,.10);
    --shadow-lg:   0 18px 48px rgba(10,26,58,.16);
    --container:   1200px;
    --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-head:   'Manrope', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-d); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--c-dark); margin: 0 0 .5em; line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(28px, 4vw, 46px); }
h2 { font-size: clamp(24px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p  { margin: 0 0 1em; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; top:8px; left:8px; padding:8px 12px; background:#fff; z-index:9999; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-light { background: var(--c-bg-alt); }
.section-dark { background: var(--c-dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .kicker { color: #6FA8FF; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head p { color: var(--c-muted); font-size: 17px; }
.section-dark .section-head p { color: #C4D0E5; }

.kicker { display: inline-block; font-family: var(--font-head); font-weight: 700; color: var(--c-cta); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; margin-bottom: 10px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 12px; font-weight: 700; font-family: var(--font-head); text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s; border: 0; cursor: pointer; font-size: 15px; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 17px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; margin-bottom: 8px; }
.btn-primary { background: var(--c-primary); color: #fff; box-shadow: 0 6px 16px rgba(0,102,255,.3); }
.btn-primary:hover { background: var(--c-primary-d); color: #fff; }
.btn-cta-lg { background: var(--c-cta); color: #fff; padding: 16px 28px; font-size: 18px; border-radius: 14px; box-shadow: 0 8px 18px rgba(255,107,53,.4); }
.btn-cta-lg:hover { background: var(--c-cta-d); color: #fff; }
.btn-whatsapp { background: var(--c-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1FB855; color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--c-border); color: var(--c-text); }
.section-dark .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-link { padding: 0; background: transparent; color: var(--c-primary); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-sm); }
.topbar { background: var(--c-dark); color: #C4D0E5; font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; gap: 6px; align-items: center; }
.topbar a { color: #fff; }
.navbar { padding: 14px 0; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-link { display: flex; align-items: center; gap: 12px; color: var(--c-dark); }
.brand-logo { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--c-dark); }
.brand-text em { font-style: normal; font-size: 12px; color: var(--c-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

.primary-nav .menu { display: flex; list-style: none; padding: 0; margin: 0; gap: 4px; }
.primary-nav .menu li a { display: block; padding: 10px 14px; color: var(--c-text); font-weight: 600; border-radius: 8px; transition: background .15s, color .15s; }
.primary-nav .menu li a:hover, .primary-nav .menu li.current-menu-item a { background: var(--c-bg-alt); color: var(--c-primary); }

.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; background: var(--c-cta); color: #fff; border-radius: 12px; font-weight: 700; font-family: var(--font-head); }
.btn-cta:hover { background: var(--c-cta-d); color: #fff; }
.btn-cta small { display: block; font-size: 10px; opacity: .9; letter-spacing: 1.5px; font-weight: 700; }
.btn-cta span { font-size: 16px; line-height: 1; }

.menu-toggle { display: none; background: transparent; border: 0; flex-direction: column; gap: 4px; padding: 10px; cursor: pointer; }
.menu-toggle span { width: 24px; height: 2px; background: var(--c-dark); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0; background: linear-gradient(135deg, #F4F7FB 0%, #E8F0FF 100%); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: .07; background-image: radial-gradient(circle at 20% 20%, var(--c-primary) 0, transparent 35%), radial-gradient(circle at 80% 80%, var(--c-cta) 0, transparent 35%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 16px; }
.hero p { font-size: 18px; color: var(--c-muted); max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hero-bullets li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--c-text); }
.hero-bullets span { width: 18px; height: 18px; border-radius: 50%; background: var(--c-primary); position: relative; flex-shrink: 0; }
.hero-bullets span::after { content: ''; position: absolute; left: 5px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.hero-media { position: relative; }
.hero-media img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.hero-card { position: absolute; bottom: -30px; left: -30px; background: #fff; padding: 18px; border-radius: 16px; box-shadow: var(--shadow-md); max-width: 300px; }
.hero-card-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.hero-card-row strong { font-size: 22px; color: var(--c-dark); font-family: var(--font-head); }
.hero-card-row span { color: #FFB400; }
.hero-card-row small { color: var(--c-muted); font-size: 12px; margin-left: auto; }
.hero-card p { font-size: 13px; color: var(--c-text); margin: 0; line-height: 1.5; }
.hero-card em { color: var(--c-muted); font-style: normal; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--c-dark); color: #fff; padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.trust-grid div { display: flex; flex-direction: column; }
.trust-grid strong { font-size: 28px; font-family: var(--font-head); color: #fff; }
.trust-grid span { font-size: 13px; color: #C4D0E5; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card { background: #fff; padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--c-border); transition: all .2s; display: block; color: var(--c-text); position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--c-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--c-text); }
.service-card-lg { padding: 36px 28px; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--c-primary), #4A8DFF); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 30px; height: 30px; }
.service-card h2, .service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--c-muted); font-size: 15px; }
.service-card ul { padding-left: 18px; margin: 12px 0; color: var(--c-text); font-size: 14px; }
.service-card ul li { margin-bottom: 4px; }
.card-link { display: inline-block; margin-top: 12px; color: var(--c-primary); font-weight: 700; font-family: var(--font-head); }

.service-icon-lg { width: 220px; height: 220px; border-radius: 30px; background: linear-gradient(135deg, var(--c-primary), #4A8DFF); color: #fff; display: flex; align-items: center; justify-content: center; margin-left: auto; box-shadow: var(--shadow-md); }
.service-icon-lg svg { width: 110px; height: 110px; }

/* ---------- Districts ---------- */
.district-pills { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.district-pill { display: block; background: #fff; padding: 18px 20px; border-radius: 14px; border: 1px solid var(--c-border); color: var(--c-text); transition: all .2s; }
.district-pill:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--c-text); }
.district-pill strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--c-dark); margin-bottom: 4px; }
.district-pill span { display: block; color: var(--c-muted); font-size: 13px; }
.district-pill-lg { padding: 24px; }
.district-pill-lg small { display: inline-block; margin-top: 10px; color: var(--c-primary); font-weight: 700; font-family: var(--font-head); font-size: 13px; }

/* ---------- Brands ---------- */
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.brand-strips { display: grid; gap: 20px; }
.brand-strips img { background: #fff; padding: 24px; border-radius: 16px; max-width: 100%; }
.brand-strips-large { grid-template-columns: 1fr 1fr; margin-bottom: 50px; }
.brand-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.brand-cat { background: #fff; border: 1px solid var(--c-border); padding: 24px; border-radius: var(--radius); }
.brand-cat h3 { color: var(--c-primary); margin-bottom: 16px; }
.brand-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag { background: var(--c-bg-alt); padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--c-text); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.why-item { background: #fff; padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--c-border); }
.why-item strong { display: block; font-family: var(--font-head); color: var(--c-dark); font-size: 18px; margin-bottom: 6px; font-weight: 800; }
.why-item p { color: var(--c-muted); font-size: 14px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s; }
.gallery-grid figure:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi { background: #fff; padding: 26px; border-radius: var(--radius); border: 1px solid var(--c-border); }
.testi .stars { color: #FFB400; font-size: 18px; margin-bottom: 8px; }
.testi p { color: var(--c-text); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.testi span { color: var(--c-muted); font-size: 14px; }
.testi span strong { color: var(--c-dark); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--c-border); border-radius: 12px; padding: 18px 20px; transition: border .2s; }
.faq-item[open] { border-color: var(--c-primary); }
.faq-item summary { font-weight: 700; font-family: var(--font-head); color: var(--c-dark); cursor: pointer; list-style: none; position: relative; padding-right: 30px; font-size: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--c-primary); transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 12px 0 0; color: var(--c-muted); }

/* ---------- Page header ---------- */
.page-header { background: linear-gradient(135deg, var(--c-dark) 0%, #142B5C 100%); color: #fff; padding: 60px 0; }
.page-header h1 { color: #fff; }
.page-header p { color: #C4D0E5; font-size: 17px; max-width: 720px; }
.page-header .kicker { color: #FFB47A; }
.service-hero { padding-top: 70px; padding-bottom: 70px; }
.service-hero .two-col { grid-template-columns: 1.4fr 1fr; align-items: center; }
.service-hero .hero-actions { margin-top: 20px; margin-bottom: 0; }
.district-hero { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-dark) 100%); }
.district-hero .hero-actions { margin-top: 20px; }

/* ---------- Two col ---------- */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1em; }
.prose h3 { margin-top: 1.4em; color: var(--c-dark); }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose .lead { font-size: 19px; color: var(--c-text); }

.side-card { background: #fff; padding: 28px; border-radius: var(--radius); border: 1px solid var(--c-border); position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.side-card h4 { color: var(--c-dark); font-size: 16px; margin-bottom: 14px; }
.side-card hr { border: 0; border-top: 1px solid var(--c-border); margin: 24px 0; }
.side-card .stat-list { list-style: none; padding: 0; margin: 0; }
.side-card .stat-list li { padding: 10px 0; border-bottom: 1px dashed var(--c-border); color: var(--c-muted); }
.side-card .stat-list strong { color: var(--c-primary); font-family: var(--font-head); font-size: 22px; margin-right: 6px; }
.side-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.side-pills a { background: var(--c-bg-alt); padding: 6px 12px; border-radius: 20px; font-size: 13px; color: var(--c-text); }
.side-pills a:hover { background: var(--c-primary); color: #fff; }

/* ---------- Forms ---------- */
.contact-form { display: grid; gap: 14px; background: #fff; padding: 28px; border-radius: var(--radius); border: 1px solid var(--c-border); }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--c-text); font-size: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px 14px; border: 1px solid var(--c-border); border-radius: 10px; font-size: 15px; font-family: inherit; transition: border .2s; background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(0,102,255,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-weight: 600; }
.notice-success { background: #DCFCE7; color: #15803D; border: 1px solid #86EFAC; }
.notice-error { background: #FEE2E2; color: #B91C1C; border: 1px solid #FCA5A5; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--c-cta) 0%, #FF8A4C 100%); color: #fff; padding: 40px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h3 { color: #fff; margin-bottom: 6px; font-size: 24px; }
.cta-band p { color: rgba(255,255,255,.92); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-cta-lg { background: #fff; color: var(--c-cta); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.cta-band .btn-cta-lg:hover { background: #fff; color: var(--c-cta-d); }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-dark); color: #C4D0E5; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #C4D0E5; }
.footer-col a:hover { color: #fff; }
.footer-logo { height: 60px; background: #fff; padding: 8px; border-radius: 8px; margin-bottom: 14px; }
.contact-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.contact-list strong { color: #fff; font-size: 16px; }
.district-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seo-strip { background: #050E22; padding: 16px 0; font-size: 12px; color: #6E7C9A; }
.seo-strip p { margin: 0; line-height: 1.8; }
.copy { background: #050E22; border-top: 1px solid rgba(255,255,255,.05); padding: 16px 0; }
.copy-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* ---------- Floating buttons ---------- */
.floating-buttons { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 100; }
.floating-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 50px; color: #fff; font-weight: 700; font-family: var(--font-head); box-shadow: var(--shadow-md); transition: transform .15s; }
.floating-btn:hover { transform: scale(1.05); color: #fff; }
.floating-call { background: var(--c-primary); }
.floating-whatsapp { background: var(--c-whatsapp); }

/* ---------- Pagination ---------- */
.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; border: 1px solid var(--c-border); border-radius: 8px; margin: 0 4px; color: var(--c-text); font-weight: 600; }
.pagination .current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { left: 20px; bottom: -20px; }
    .brands-grid { grid-template-columns: 1fr; gap: 30px; }
    .brand-strips-large { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .side-card { position: static; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .navbar-cta { display: none; }
    .menu-toggle { display: flex; }
    .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow-md); padding: 16px; display: none; }
    .primary-nav.open { display: block; }
    .primary-nav .menu { flex-direction: column; gap: 0; }
    .primary-nav .menu li a { padding: 14px 16px; border-radius: 0; border-bottom: 1px solid var(--c-border); }
    .topbar-left { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .service-icon-lg { width: 140px; height: 140px; margin: 0 auto; }
    .service-icon-lg svg { width: 70px; height: 70px; }
    .floating-btn span { display: none; }
    .floating-btn { padding: 14px; }
    .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .section { padding: 50px 0; }
    .hero { padding: 50px 0 60px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-bullets { grid-template-columns: 1fr; }
    .navbar-inner { gap: 12px; }
    .brand-text strong { font-size: 17px; }
    .brand-logo { height: 42px; }
}
