/* =============================================
   HIZLI JENERATÖR - Main Stylesheet
   Colors: Yellow #F5A800 | Dark #1C1C1C
============================================= */

:root {
  --yellow: #F5A800;
  --yellow-dark: #d99200;
  --dark: #1C1C1C;
  --dark2: #2d2d2d;
  --dark3: #3d3d3d;
  --white: #ffffff;
  --light: #f7f7f7;
  --gray: #888888;
  --text: #333333;
  --border: #e0e0e0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 50px;
}
.section-dark .section-subtitle { color: #aaa; }

.divider {
  width: 60px; height: 4px;
  background: var(--yellow);
  margin: 14px auto 20px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn-primary:hover { background: var(--yellow-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark2); }

/* ── Top Bar ── */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--yellow); }
.top-bar-left, .top-bar-right {
  display: flex; align-items: center; gap: 20px;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }

/* ── Navbar ── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
.navbar-logo img { height: 55px; width: auto; }

.nav-menu {
  display: flex; align-items: center; gap: 6px;
}
.nav-menu a {
  padding: 8px 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--yellow);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2d2d2d 50%, #1a1a1a 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='%23F5A800' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-box {
  background: var(--dark2);
  border: 2px solid var(--dark3);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.hero-image-box img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-image-box .placeholder-icon {
  font-size: 5rem;
  margin-bottom: 16px;
}
.hero-image-box p { color: #888; font-size: 0.9rem; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--yellow);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-item p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.8;
}

/* ── Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.product-img {
  background: var(--light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 3px solid var(--yellow);
  overflow: hidden;
}
.product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 22px; }
.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.product-info p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-specs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.spec-tag {
  background: var(--light);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.product-info .btn { width: 100%; text-align: center; }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 58px; height: 58px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--dark3);
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.step-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: #aaa; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--yellow);
  padding: 60px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.cta-banner p { color: var(--dark); opacity: 0.8; margin-top: 6px; }
.cta-banner-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.page-header p { color: #aaa; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px; font-size: 0.88rem;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: #666; }

/* ── Product Filter ── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--dark);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  background: var(--light);
  border-radius: 10px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 3px solid var(--yellow);
  overflow: hidden;
}
.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 28px;
}
.mv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.mv-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 30px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; color: var(--gray); margin-bottom: 3px; }
.contact-item p, .contact-item a {
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-note {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }
.form-submit-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
}
.form-submit-wa:hover { background: #1EBE5A; color: var(--white); }
.form-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

.location-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 5px solid var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  margin-top: 50px;
}
.location-pin { font-size: 2.2rem; line-height: 1; }
.location-text { flex: 1; }
.location-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.location-text p { color: var(--gray); font-size: 0.92rem; }
.location-card .btn { white-space: nowrap; }
@media (max-width: 768px) {
  .location-card { flex-direction: column; text-align: center; gap: 14px; }
  .location-card .btn { width: 100%; text-align: center; }
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Footer ── */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { height: 64px; margin-bottom: 16px; background: #fff; border-radius: 10px; padding: 6px 10px; }
.footer-brand p { font-size: 0.88rem; color: #888; line-height: 1.8; }
.footer-col h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #888; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item span:first-child { color: var(--yellow); font-size: 1rem; margin-top: 2px; }
.footer-contact-item a { color: #888; }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #555;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image-box { margin-top: 34px; }
  .hero-image-box img { height: 260px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .section-title { font-size: 1.6rem; }
  .hero { padding: 65px 0 55px; }
  .hero h1 { font-size: 2rem; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 75px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
}

/* ── Rental Section ── */
.btn-xl {
  font-size: 1.15rem;
  padding: 16px 36px;
  box-shadow: 0 6px 24px rgba(245,168,0,0.4);
  animation: pulse-yellow 2s infinite;
}
@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,168,0,0.4); }
  50%       { box-shadow: 0 6px 36px rgba(245,168,0,0.7); }
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.rental-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.rental-card-featured {
  border-color: var(--yellow);
  background: var(--dark);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(245,168,0,0.2);
}
.rental-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.rental-card-featured p { color: #aaa; }
.rental-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rental-icon { font-size: 2.4rem; margin-bottom: 14px; }
.rental-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.rental-card p { font-size: 0.92rem; color: var(--gray); margin-bottom: 18px; line-height: 1.7; }
.rental-features { margin-bottom: 24px; }
.rental-features li { font-size: 0.88rem; margin-bottom: 8px; color: #555; }
.rental-card-featured .rental-features li { color: #bbb; }

.rental-cta-bar {
  background: var(--dark);
  border-radius: 14px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 0.92rem;
}

@media (max-width: 992px) {
  .rental-grid { grid-template-columns: 1fr; }
  .rental-card-featured { transform: scale(1); }
  .rental-card-featured:hover { transform: translateY(-6px); }
}
@media (max-width: 768px) {
  .rental-cta-bar { flex-direction: column; text-align: center; }
  .hero-buttons { flex-wrap: wrap; }
}

/* ── Rental product cards ── */
.product-card-rent {
  border-color: var(--yellow);
  position: relative;
}
.rent-label {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.filter-btn-rent {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  border-color: var(--yellow) !important;
  font-weight: 700;
}
.filter-btn-rent:hover, .filter-btn-rent.active {
  background: var(--yellow-dark) !important;
  border-color: var(--yellow-dark) !important;
}

/* ── Urgent rental bar ── */
/* Phone Hero Bar – contact page */
.phone-hero-bar {
  background: var(--yellow);
  padding: 28px 0;
  border-bottom: 4px solid var(--dark);
}
.phone-hero-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.phone-hero-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
}
.phone-hero-text > span { font-size: 2rem; }
.phone-hero-text strong { font-size: 1.1rem; font-weight: 700; display: block; }
.phone-hero-text p { font-size: 0.88rem; margin: 2px 0 0; opacity: 0.8; }
.phone-hero-numbers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.phone-hero-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark);
  color: var(--white) !important;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  min-width: 160px;
  text-align: center;
}
.phone-hero-btn:hover { background: #333; transform: translateY(-2px); }
.phone-hero-btn .phone-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-bottom: 3px; }
.phone-hero-btn .phone-number { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.5px; }
.phone-hero-wa { background: #25D366 !important; }
.phone-hero-wa:hover { background: #1ebe5c !important; }
@media (max-width: 768px) {
  .phone-hero-bar .container { flex-direction: column; text-align: center; }
  .phone-hero-text { justify-content: center; }
  .phone-hero-numbers { justify-content: center; }
  .phone-hero-btn { min-width: 140px; }
}

.urgent-bar {
  background: var(--dark);
  padding: 16px 0;
  border-bottom: 3px solid var(--yellow);
}
.urgent-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--white);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .urgent-bar .container { flex-direction: column; text-align: center; }
}

/* ── Yasal Metin Sayfaları (KVKK vb.) ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.85;
}
.legal-updated {
  font-size: 0.82rem;
  color: #999;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--yellow);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 14px; font-size: 0.94rem; }
.legal-content ul { margin: 0 0 18px 22px; list-style: disc; }
.legal-content li::marker { color: var(--yellow); }
.legal-content li { margin-bottom: 8px; font-size: 0.94rem; }
.legal-content strong { color: var(--dark); }
.legal-content a { color: var(--yellow-dark, #C98A00); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

/* Form KVKK onayı */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--gray);
}
.form-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--yellow);
  cursor: pointer;
}
.form-consent a { color: var(--dark); font-weight: 700; text-decoration: underline; }

/* ── 404 ── */
.notfound { max-width: 620px; margin: 0 auto; text-align: center; }
.notfound-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}
.notfound h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.notfound p { color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.notfound-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
