/* =============================================
   K繹rfez Acil Kurye - Ana Stil Dosyas覺
   ============================================= */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy-deep: #0f172a;
    --navy-medium: #1e293b;
    --navy-light: #334155;
  --orange: #1e3a8a;        /* koyu mavi */
    --orange-light: #2563eb;  /* açık mavi */
    --orange-glow: #1e40af;   /* glow mavi */
    --white: #ffffff;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --green: #25d366;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08);
    --shadow-lg: 0 8px 32px rgba(15,23,42,0.12);
    --shadow-xl: 0 16px 48px rgba(15,23,42,0.16);
--shadow-accent: 0 4px 20px rgba(255,255,255,0.2);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: 10px; display: block; }
ul { list-style: none; }

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

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius); font-size: 14px;
    font-weight: 600; cursor: pointer; border: none;
    transition: var(--transition); text-decoration: none; white-space: nowrap;
}

.btn-accent {
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    color: var(--white); box-shadow: var(--shadow-accent);
}
.btn-accent:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
    background: var(--white); color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark {
    background: var(--white); color: var(--navy-deep);
    font-weight: 600;
}
.btn-dark:hover { opacity: 0.9; }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.navbar-logo { display: flex; align-items: center; gap: 10px; }

.logo-icon {
    width: 40px; height: 40px; border-radius: var(--radius);
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 800; font-size: 18px;
}

.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 700; font-size: 14px; line-height: 1.2; }
.logo-sub { font-size: 11px; opacity: 0.7; }


.navbar:not(.scrolled) .nav-link:hover { color: var(--white); opacity: 1; }
.navbar:not(.scrolled) .nav-link { opacity: 0.85; }
.navbar:not(.scrolled) .nav-link.active { opacity: 1; color: var(--orange); }

.navbar.scrolled .logo-title { color: var(--text); }
.navbar.scrolled .logo-sub { color: var(--text-muted); }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--orange); }
.navbar.scrolled .nav-link.active { color: var(--orange); }
.navbar.scrolled .nav-phone { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
    padding: 8px 14px; border-radius: 6px; font-size: 14px;
    font-weight: 500; transition: var(--transition);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--text);
    transition: var(--transition); border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

.mobile-menu {
    display: none; background: var(--card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    padding: 16px; margin: 0 16px 16px; animation: fadeIn 0.3s ease;
}
.mobile-menu.active { display: block; }

.mobile-link {
    display: block; padding: 12px 16px; border-radius: 8px;
    font-size: 14px; font-weight: 500; transition: var(--transition);
}
.mobile-link:hover, .mobile-link.active { 
    background: white;
    color: var(--navy-deep);
}

.mobile-cta { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; }

/* === Hero === */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('/images/kurye.png') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82); /* Tüm alan eşit koyu lacivert */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Yazıları daha net yapmak için */
.hero h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 120px 0 80px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,126,34,0.2); border-radius: var(--radius-full);
    padding: 6px 16px; margin-bottom: 24px;
}
.hero-badge i, .hero-badge span { color: var(--orange); font-size: 13px; font-weight: 600; }

.hero h1 {
    font-size: 48px; font-weight: 800; color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; max-width: 520px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Stats === */
.stats { position: relative; z-index: 20; margin-top: -64px; }
.stats-grid {
    background: var(--card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    padding: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-value { font-size: 28px; font-weight: 800; color: var(--navy-deep); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* === Section === */
.section { padding: 96px 0; }
.section-muted { background: rgba(241,245,249,0.5); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { color: var(--orange); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--text); margin-top: 8px; }
.section-desc { color: var(--text-muted); margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === Service Cards === */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
    background: var(--card); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
    color: var(--navy-deep);
    font-size: 20px;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    color: var(--white);
}
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === Quote Form === */
.quote-section { padding: 96px 0; }
.quote-card {
    background: var(--card); border-radius: var(--radius-lg); padding: 48px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border); max-width: 800px; margin: 0 auto;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-label { font-size: 13px; font-weight: 600; color: var(--text); }

.form-input, .form-select, .form-textarea {
    padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 14px; font-family: inherit; background: var(--white);
    transition: var(--transition); color: var(--text); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
}
.form-textarea { resize: vertical; min-height: 80px; }

.form-success {
    background: #d1fae5; border: 1px solid #6ee7b7; border-radius: var(--radius);
    padding: 16px 20px; color: #065f46; font-weight: 500; display: none;
    text-align: center; margin-top: 16px;
}
.form-success.visible { display: block; animation: fadeIn 0.3s ease; }

.form-error {
    background: #fee2e2; border: 1px solid #fca5a5; border-radius: var(--radius);
    padding: 16px 20px; color: #991b1b; font-weight: 500; display: none;
    text-align: center; margin-top: 16px;
}
.form-error.visible { display: block; animation: fadeIn 0.3s ease; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    width: 100%; padding: 18px 24px; background: none; border: none;
    font-size: 15px; font-weight: 600; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text); font-family: inherit;
}
.faq-question i { transition: var(--transition); color: var(--orange); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 24px;
}
.faq-answer.active { max-height: 300px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === Footer === */
.footer { background: var(--navy-deep); padding: 64px 0 0; color: rgba(255,255,255,0.7); }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer .logo-title { color: var(--white); }
.footer .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; transition: var(--transition); color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); }

.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer-contact i { color: var(--orange); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px;
    padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 16px;
}
.contact-info-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    background: #f1f5f9;display: flex; align-items: center;
    justify-content: center; color: var(--orange); font-size: 18px; flex-shrink: 0;
}
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); }

/* === Page Hero (alt sayfalar) === */
.page-hero {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    padding: 140px 0 80px; text-align: center;
}
.page-hero h1 { font-size: 40px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* === WhatsApp Button === */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: pulseGlow 2s infinite;
    color: var(--white); font-size: 28px;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* === Animations === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    
    .hero h1 { font-size: 32px; }
    .hero-content { padding: 100px 0 60px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    
    .stats-grid { padding: 24px; gap: 16px; }
    .stat-value { font-size: 22px; }
    
    .section { padding: 64px 0; }
    .section-title { font-size: 28px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .quote-card { padding: 24px; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* === Hakkımızda Sayfası === */
:root { --bg-alt: #f1f5f9; }

.about-intro { max-width: 800px; }

.about-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.about-info-card {
    background: var(--card); border-radius: var(--radius-lg); padding: 32px 24px;
    border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about-info-card:hover {
    box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.about-info-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(230,126,34,0.1), rgba(230,126,34,0.05));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 22px; color: var(--orange);
}
.about-info-card h4 { font-weight: 700; margin-bottom: 8px; font-size: 16px; }
.about-info-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* Steps */
.steps-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.step-card {
    background: var(--card); border-radius: var(--radius-lg); padding: 24px 20px;
    border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow-sm);
    position: relative;
}
.step-number {
    width: 40px; height: 40px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--orange), var(--orange-glow));
    color: var(--white); font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}
.step-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Two Column */
.about-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.about-block {
    background: var(--card); border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

/* Hours */
.hours-list { display: flex; flex-direction: column; gap: 16px; }
.hours-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: var(--radius);
    background: var(--bg); border: 1px solid var(--border);
}
.hours-icon { font-size: 24px; flex-shrink: 0; }
.hours-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.hours-item p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* Policy List */
.policy-list { display: flex; flex-direction: column; gap: 12px; }
.policy-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text);
}
.policy-list li i { color: var(--orange); font-size: 16px; }

/* Corporate CTA */
.corporate-cta {
    text-align: center; background: var(--card); border-radius: var(--radius-lg);
    padding: 48px 32px; border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.corporate-cta-icon {
    width: 64px; height: 64px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(230,126,34,0.15), rgba(230,126,34,0.05));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 28px; color: var(--orange);
}

/* Hakkımızda Responsive */
@media (max-width: 768px) {
    .about-two-col { grid-template-columns: 1fr; }
    .about-info-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
}
