/* ===================================================
   ACİL ÇİLİNGİR SERVİSİ - ANA STİL DOSYASI
   =================================================== */

:root {
  --bg-dark: #0c0d10;
  --bg-dark-2: #15171c;
  --bg-card: #1b1d24;
  --red: #d81f26;
  --red-dark: #a5151b;
  --gold: #f2a71b;
  --white: #ffffff;
  --gray: #b7b9c2;
  --gray-light: #e7e8ec;
  --border: rgba(255,255,255,0.08);
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--gray-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .2s ease; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-weight: 800; line-height: 1.25; color: var(--white); }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }

.section-desc {
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 40px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); box-shadow: 0 8px 20px rgba(216,31,38,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(216,31,38,0.45); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #d98d0a); color: #1a1200; }
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline { border: 2px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: var(--white); color: var(--bg-dark); }
.btn-light:hover { transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* TOPBAR */
.topbar { background: #060708; font-size: 13px; color: var(--gray); padding: 8px 0; border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left span { margin-right: 22px; }
.topbar-left i { color: var(--gold); margin-right: 6px; }
.topbar-right a { margin-left: 20px; color: var(--gray); }
.topbar-right a:hover { color: var(--gold); }
.topbar-right i { margin-right: 6px; color: var(--red); }

/* HEADER */
.main-header {
  background: rgba(12,13,16,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 20px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; min-width: 0; }
.logo img { flex-shrink: 0; }
.logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo img { height: 66px; width: auto; }
.logo-text { font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--white); letter-spacing: .3px; }
.logo-text strong { color: var(--red); font-weight: 800; }
.main-nav ul { display: flex; gap: 26px; flex-wrap: nowrap; white-space: nowrap; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--gray-light); padding: 6px 0; position: relative; }
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active, .main-nav a:hover { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle { display: none; background: transparent; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

/* WHATSAPP / CALL FLOATING BUTTONS */
.whatsapp-float, .call-float {
  position: fixed; bottom: 24px; z-index: 600;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: var(--shadow);
  animation: pulse 2.2s infinite;
}
.whatsapp-float { right: 24px; background: #25D366; }
.call-float { left: 24px; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* HERO SLIDER */
.hero-slider { position: relative; width: 100%; height: 620px; max-height: 82vh; background: #000; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,7,8,0.92) 8%, rgba(6,7,8,0.6) 48%, rgba(6,7,8,0.25) 100%);
}
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.hero-content .inner { max-width: 560px; padding: 0 20px; margin: 0 auto; width: 100%; max-width: 1220px; box-sizing: border-box; }
.hero-content .inner > * { max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(216,31,38,0.15); border: 1px solid var(--red); color: #ff5b60; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; width: fit-content; }
.hero-content h1 { font-size: 46px; margin-bottom: 16px; line-height: 1.15; }
.hero-content h1 .accent { color: var(--gold); }
.hero-content p { color: var(--gray-light); font-size: 16.5px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; padding: 0; }
.hero-dots button.active { background: var(--gold); border-color: var(--gold); }

.hero-arrows button { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; background: rgba(255,255,255,0.12); border: 1px solid var(--border); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 17px; }
.hero-arrows button:hover { background: var(--red); border-color: var(--red); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* TRUST STRIP */
.trust-strip { background: var(--bg-dark-2); padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item i { font-size: 26px; color: var(--gold); }
.trust-item div strong { display: block; color: var(--white); font-size: 15px; }
.trust-item div span { font-size: 13px; color: var(--gray); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: linear-gradient(180deg, var(--red), var(--gold)); transition: height .3s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(242,167,27,0.3); }
.service-icon { width: 62px; height: 62px; border-radius: 14px; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--white); margin-bottom: 20px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 14.5px; margin-bottom: 16px; }
.service-link { color: var(--gold); font-weight: 600; font-size: 14px; }
.service-link i { margin-left: 4px; transition: transform .2s ease; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ABOUT / WHY US */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { border-radius: var(--radius); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; padding: 22px 26px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.about-badge strong { display: block; font-size: 30px; }
.about-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.feature-list { display: grid; gap: 20px; margin-top: 26px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item i { color: var(--gold); font-size: 22px; background: rgba(242,167,27,0.12); width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h4 { font-size: 16px; margin-bottom: 4px; }
.feature-item p { color: var(--gray); font-size: 14px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-item { text-align: center; position: relative; }
.process-num { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--gold); color: var(--gold); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.process-item h4 { font-size: 16px; margin-bottom: 8px; }
.process-item p { color: var(--gray); font-size: 13.5px; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius);
  padding: 50px 46px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.cta-banner h3 { font-size: 26px; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); }

/* AREAS */
.areas-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.area-pill { background: var(--bg-card); border: 1px solid var(--border); padding: 12px 22px; border-radius: 50px; font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; }
.area-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(242,167,27,0.08); }
.area-pill i { color: var(--gold); margin-right: 8px; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.testimonial-card p { color: var(--gray-light); font-size: 14.5px; margin-bottom: 20px; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
.testimonial-person strong { display: block; font-size: 14.5px; color: var(--white); }
.testimonial-person span { font-size: 12.5px; color: var(--gray); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-img { height: 190px; background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-card)); display: flex; align-items: center; justify-content: center; font-size: 46px; color: var(--red); }
.blog-body { padding: 24px; }
.blog-date { font-size: 12.5px; color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block; }
.blog-body h3 { font-size: 17px; margin-bottom: 10px; }
.blog-body p { color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.blog-more { font-size: 13.5px; font-weight: 600; color: var(--gold); }

/* FOOTER */
.footer-cta { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 40px 0; }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-cta-inner h3 { font-size: 22px; margin-bottom: 6px; }
.footer-cta-inner p { color: var(--gray); }

.main-footer { background: #08090b; padding-top: 60px; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer-brand strong { color: var(--red); font-weight: 800; }
.footer-about p { color: var(--gray); font-size: 13.5px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--red); }
.footer-col h4 { font-size: 15px; margin-bottom: 18px; color: var(--white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-areas { color: var(--gray); font-size: 13.5px; line-height: 1.9; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray); font-size: 13.5px; margin-bottom: 12px; }
.footer-contact li i { color: var(--gold); margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; color: var(--gray); font-size: 13px; }

/* INNER PAGE HEADER */
.page-header { background: linear-gradient(135deg, #0c0d10, #1a1c22); padding: 70px 0 50px; text-align: center; border-bottom: 1px solid var(--border); position: relative; }
.page-header h1 { font-size: 38px; }
.breadcrumb { color: var(--gray); margin-top: 10px; font-size: 14px; }
.breadcrumb a { color: var(--gold); }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--gray-light); }
.form-control {
  width: 100%; padding: 13px 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--white); font-family: var(--font); font-size: 14.5px;
}
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 20px; }
.contact-info-card h4 { margin-bottom: 6px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14.5px; }
.alert-success { background: rgba(40,180,99,0.15); border: 1px solid #28b463; color: #7ee6a3; }
.alert-danger { background: rgba(216,31,38,0.15); border: 1px solid var(--red); color: #ff9296; }

/* SERVICE DETAIL / TEAM / BLOG DETAIL */
.detail-hero-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; border: 1px solid var(--border); }
.sidebar-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.sidebar-box h4 { margin-bottom: 16px; font-size: 16px; }
.sidebar-service-list li { border-bottom: 1px solid var(--border); }
.sidebar-service-list li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 14.5px; color: var(--gray-light); }
.sidebar-service-list li a:hover { color: var(--gold); }
.sidebar-service-list li:last-child { border-bottom: none; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; }
.team-photo { height: 220px; background: linear-gradient(135deg, var(--bg-dark-2), var(--bg-card)); display: flex; align-items: center; justify-content: center; font-size: 60px; color: var(--red); }
.team-card h3 { padding-top: 20px; font-size: 17px; }
.team-card span { color: var(--gold); font-size: 13px; display: block; padding-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--bg-dark-2); z-index: 999; padding: 90px 26px; transition: right .3s ease;
    border-left: 1px solid var(--border); overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: block; }
  .header-inner { flex-wrap: nowrap; }
}

@media (max-width: 991px) {
  .about-section, .contact-wrap { grid-template-columns: 1fr; }
  .services-grid, .testimonial-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 34px; }
  .hero-slider { height: 480px; }
  .logo-text { font-size: 17px; }
}

@media (max-width: 767px) {
  .topbar-left span:nth-child(2) { display: none; }
  .header-cta .btn-primary { display: none; }
  .services-grid, .testimonial-grid, .blog-grid, .team-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 25px; }
  .hero-content p { font-size: 14px; }
  .hero-content .inner { max-width: 100%; }
  .hero-slider { height: 480px; }
  .hero-dots { bottom: 16px; }
  .hero-arrows { display: none; }
  .logo-text { font-size: 15px; line-height: 1.15; }
  .logo img { height: 46px; }
  .call-float { display: flex; }
  .cta-banner { text-align: center; justify-content: center; }
  .section { padding: 44px 0; }
  .section-title { font-size: 24px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left, .topbar-right { width: 100%; text-align: center; }
  .topbar-right { margin-top: 4px; }
  .topbar-right a { margin-left: 10px; margin-right: 10px; }
  .header-inner { padding: 10px 16px; }
  .btn { padding: 12px 20px; font-size: 14px; }
}

@media (max-width: 420px) {
  .hero-content h1 { font-size: 21px; }
  .hero-badge { font-size: 11.5px; padding: 5px 12px; }
  .logo-text { font-size: 12.5px; }
  .hero-slider { height: 420px; }
}

@media (max-width: 340px) {
  .logo-text { font-size: 11px; }
}
