/* ============================================================
   Uçar Teknik - Ana CSS Dosyası
   ============================================================ */

/* ---------- RESET & TEMEL ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:       #0066CC;
    --primary-dark:  #0050A0;
    --primary-light: #3388DD;
    --secondary:     #FF6600;
    --dark:          #111827;
    --dark2:         #1F2937;
    --gray:          #6B7280;
    --gray-light:    #F3F4F6;
    --white:         #FFFFFF;
    --border:        #E5E7EB;
    --shadow:        0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
    --radius:        12px;
    --radius-sm:     8px;
    --transition:    0.3s ease;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; background: var(--white); }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---------- TYPOGRAPHY ---------- */
.section-tag {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-desc { font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,204,0.35); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-white  { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-light); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #e05500; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.header-top {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 8px 0;
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-top-left  { display: flex; gap: 20px; flex-wrap: wrap; }
.header-top-right { display: flex; gap: 12px; }
.header-top-right a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.header-top-right a:hover { color: var(--primary-light); }

.navbar { background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.07); position: sticky; top: 0; z-index: 999; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.navbar-brand { display: flex; align-items: center; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-main { display: block; font-size: 17px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-sub  { display: block; font-size: 11px; color: var(--gray); font-weight: 400; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 6px; font-weight: 500; font-size: 14px; color: var(--dark2); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(0,102,204,0.07); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO SEKSİYONU
   ============================================================ */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0a1628 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    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='%230066CC' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,102,204,0.2); border: 1px solid rgba(0,102,204,0.4); color: var(--primary-light); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-badge::before { content: ''; display: block; width: 8px; height: 8px; background: var(--primary-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.2)} }

.hero h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--primary-light); }
.hero-sub { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; backdrop-filter: blur(12px); transition: var(--transition); }
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.hero-card.featured { grid-column: span 2; background: rgba(0,102,204,0.2); border-color: rgba(0,102,204,0.4); }
.hero-card-icon { font-size: 32px; margin-bottom: 12px; }
.hero-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================================
   MARKA / CLIENT BANDI
   ============================================================ */
.clients-band { background: var(--gray-light); padding: 30px 0; border-top: 1px solid var(--border); }
.clients-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.clients-label { font-size: 13px; color: var(--gray); font-weight: 600; white-space: nowrap; }
.clients-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; flex: 1; }
.client-logo { font-size: 13px; font-weight: 700; color: #9CA3AF; letter-spacing: 1px; text-transform: uppercase; }
.client-logo:hover { color: var(--primary); }

/* ============================================================
   ÇALIŞMA ADIMLARI
   ============================================================ */
.steps { background: var(--white); }
.steps-header { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 60px; }
.steps-header-left { flex: 1; }
.steps-header-right { flex: 1; display: flex; align-items: flex-end; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card { display: flex; gap: 20px; align-items: flex-start; padding: 32px; background: var(--gray-light); border-radius: var(--radius); border: 2px solid transparent; transition: var(--transition); }
.step-card:hover { border-color: var(--primary); background: rgba(0,102,204,0.04); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-no { width: 48px; height: 48px; background: var(--primary); color: var(--white); font-weight: 800; font-size: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-body p  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   İSTATİSTİKLER
   ============================================================ */
.stats-band { background: var(--primary); color: var(--white); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1; }
.stat-number span { font-size: 0.5em; opacity: 0.7; }
.stat-label { font-size: 14px; opacity: 0.8; margin-top: 6px; }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about { background: var(--gray-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-img-main .img-placeholder { font-size: 80px; opacity: 0.3; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--secondary); color: var(--white); border-radius: var(--radius); padding: 20px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .badge-num  { font-size: 36px; font-weight: 900; display: block; }
.about-badge .badge-text { font-size: 12px; font-weight: 600; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.about-feature::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--primary); color: white; border-radius: 50%; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; }
.service-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--card-color, var(--primary)); }
.service-card:hover { border-color: var(--card-color, var(--primary)); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { width: 64px; height: 64px; border-radius: var(--radius-sm); background: rgba(0,102,204,0.08); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ============================================================
   ÖZELLIKLER
   ============================================================ */
.features { background: var(--gray-light); }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 50px; }
.feature-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-img { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.feature-body { padding: 28px; }
.feature-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-body p  { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.feature-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.feature-link:hover { gap: 10px; }

/* ============================================================
   YETKİNLİKLER / PROGRESS
   ============================================================ */
.skills-section { background: var(--white); }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.skills-visual { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.progress-list { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.progress-item label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.progress-bar { height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 50px; transition: width 1.5s ease; }

/* ============================================================
   MÜŞTERİ YORUMLARI
   ============================================================ */
.testimonials { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); color: var(--white); }
.testimonials .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-quote { font-size: 40px; color: var(--primary-light); line-height: 1; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; flex-shrink: 0; }
.testimonial-info strong { display: block; font-size: 15px; }
.testimonial-info span   { font-size: 12px; color: rgba(255,255,255,0.5); }
.testimonial-stars { color: #FBBF24; font-size: 13px; margin-top: 4px; }

/* ============================================================
   EKİP
   ============================================================ */
.team { background: var(--gray-light); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 220px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; }
.team-social { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 16px; display: flex; justify-content: center; gap: 12px; opacity: 0; transition: var(--transition); }
.team-card:hover .team-social { opacity: 1; }
.team-social a { color: white; background: rgba(255,255,255,0.2); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.team-social a:hover { background: var(--primary); }
.team-info { padding: 24px; }
.team-info h3    { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-info span  { font-size: 13px; color: var(--gray); }

/* ============================================================
   FİYATLANDIRMA
   ============================================================ */
.pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; align-items: start; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: var(--transition); position: relative; }
.pricing-card.popular { border-color: var(--primary); transform: scale(1.04); box-shadow: var(--shadow-lg); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 12px; font-weight: 700; padding: 4px 20px; border-radius: 50px; white-space: nowrap; }
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.pricing-price { margin-bottom: 28px; }
.pricing-price .currency { font-size: 24px; font-weight: 700; color: var(--primary); vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-price .amount   { font-size: 56px; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-price .period   { font-size: 14px; color: var(--gray); }
.pricing-features { margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.pricing-features li::before { content:'✓'; color: var(--primary); font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { background: var(--gray-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 50px; position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-cat { position: absolute; top: 16px; left: 16px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; }
.blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p  { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-link { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.blog-link:hover { gap: 10px; }

/* ============================================================
   CTA BANDI
   ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 60px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta-band-text p  { opacity: 0.8; font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info p { font-size: 13px; margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; }

.footer-title { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-posts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.footer-post { display: flex; gap: 12px; align-items: flex-start; }
.footer-post-img { font-size: 24px; flex-shrink: 0; }
.footer-post-info { flex: 1; }
.footer-post-date { font-size: 11px; color: rgba(255,255,255,0.35); display: block; margin-bottom: 4px; }
.footer-post-info a { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }
.footer-post-info a:hover { color: var(--white); }

.footer-newsletter h5 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 10px 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white; font-size: 14px; border-radius: 8px 0 0 8px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button { padding: 10px 16px; background: var(--primary); color: white; border: none; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 16px; transition: var(--transition); }
.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   SSS
   ============================================================ */
.faq-list { max-width: 800px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 2px solid var(--border); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; cursor: pointer; font-weight: 600; font-size: 16px; gap: 16px; user-select: none; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 20px; flex-shrink: 0; transition: var(--transition); }
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 28px 22px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   İLETİŞİM FORMU
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(0,102,204,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-body p  { font-size: 14px; color: var(--gray); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark2); }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); outline: none; transition: var(--transition); background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,102,204,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 20px; display: none; }
.form-alert.success { background: #DCFCE7; color: #15803D; border: 1px solid #86EFAC; display: block; }
.form-alert.error   { background: #FEE2E2; color: #DC2626; border: 1px solid #FCA5A5; display: block; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); color: white; padding: 60px 0; text-align: center; }
.page-header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .skills-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .services-grid, .team-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-header { flex-direction: column; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid, .team-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; bottom: 0; width: 80%; max-width: 320px;
        background: var(--white); flex-direction: column; align-items: stretch;
        padding: 80px 24px 24px; gap: 4px; box-shadow: var(--shadow-lg);
        transition: right 0.35s ease; z-index: 9999;
    }
    .nav-menu.open { right: 0; }
    .nav-link { padding: 12px 16px; font-size: 15px; }

    .header-top { display: none; }
    .hero-visual { grid-template-columns: 1fr 1fr; }
    .hero-card.featured { grid-column: span 2; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-visual { display: none; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ---------- UTILITY ---------- */
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.hidden { display: none !important; }
