/* ===== ADA TEL ÖRGÜ - STYLE.CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --red: #D72B2B;
  --red-dark: #B01E1E;
  --red-light: #FF4444;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-400: #9A9A9A;
  --gray-600: #555555;
  --gray-900: #111111;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  font-weight: 900;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(215,43,43,0.07);
}

.btn-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-header:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(215,43,43,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215,43,43,0.4);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-large { padding: 16px 40px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(215,43,43,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease;
}

.hero-title .highlight {
  color: var(--red-light);
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeUp 1s ease;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 1.1s ease;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.5s infinite;
}

/* ===== INTRO BAND ===== */
.intro-band {
  background: var(--red);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
}

.intro-band p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.intro-band strong { font-weight: 700; }

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  background: rgba(215,43,43,0.1);
  color: var(--red);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.section-title .highlight { color: var(--red); }

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-img img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.service-body p {
  font-size: 14px;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 14px;
}

.service-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}

.service-card--more {
  background: var(--red);
  align-items: center;
  justify-content: center;
}

.service-more-inner {
  text-align: center;
  padding: 40px 24px;
  color: var(--white);
}

.more-icon {
  display: block;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.service-card--more h3 { color: var(--white); font-size: 20px; }
.service-card--more p { color: rgba(255,255,255,0.8); }
.service-card--more .service-link { color: rgba(255,255,255,0.9); }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-img {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(215,43,43,0.4);
}

.badge-num { font-size: 28px; font-weight: 800; line-height: 1; }
.badge-text { font-size: 11px; font-weight: 600; line-height: 1.3; margin-top: 2px; }

.why-content .section-title { text-align: left; }
.why-content .section-tag { text-align: left; display: inline-block; }

.why-content > p {
  font-size: 15.5px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--gray-600);
}

/* ===== COUNTER ===== */
.counter-section {
  background: var(--gray-900);
  padding: 60px 0;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.counter-item { padding: 10px; }

.counter-num {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-content h2 .highlight {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

.cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-actions .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.cta-actions .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer .logo-main { color: var(--white); }

.footer-desc {
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--red); }

.footer-contact li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== FLOAT CALL ===== */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(215,43,43,0.5);
  animation: pulse 2s infinite;
  transition: var(--transition);
}

.float-call:hover { transform: scale(1.1); color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--red-dark) 100%);
  padding: 130px 0 70px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== PRODUCT PAGE ===== */
.product-section {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.product-grid.reverse { direction: rtl; }
.product-grid.reverse > * { direction: ltr; }

.product-img-wrap {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-content p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.8;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.feature-tag {
  background: var(--gray-100);
  color: var(--gray-900);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(215,43,43,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-item-body span, .contact-item-body a {
  font-size: 14px;
  color: var(--gray-600);
  display: block;
}

.contact-item-body a:hover { color: var(--red); }

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,43,43,0.1);
}

.form-group textarea { height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(215,43,43,0.4);
}

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== HIZMETLER PAGE ===== */
.services-list {
  padding: 80px 0;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-list-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.service-list-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-list-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.service-list-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-list-body p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.service-list-body a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(215,43,43,0.5); }
  50% { box-shadow: 0 6px 36px rgba(215,43,43,0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .counters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-top: 1px solid var(--gray-200);
    z-index: 999;
    gap: 4px;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link { padding: 12px 16px; border-radius: 8px; }

  .btn-header {
    margin: 8px 0 0 0;
    text-align: center;
    padding: 12px 20px;
  }

  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 300px; }
  .why-badge-float { bottom: 10px; right: 10px; width: 90px; height: 90px; }
  .badge-num { font-size: 22px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-outline { color: var(--white); }
  .counters { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { text-align: center; justify-content: center; }
  .hero-title { font-size: 34px; }
}
