/* ============================================
   AcilOto — 7/24 Oto Tamir Site Stili
   ============================================ */

:root {
  --red: #E8271A;
  --red-dark: #C01F14;
  --red-light: #ff4438;
  --yellow: #FFB800;
  --black: #0A0A0A;
  --dark: #111318;
  --dark2: #1A1D24;
  --dark3: #22262F;
  --gray: #8892A4;
  --gray-light: #C8D0DC;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --green: #22C55E;
  --wa-green: #25D366;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.22);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

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

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

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-xl { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-urgent {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(232,39,26,.5);
}
.btn-urgent:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,39,26,.4);
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--dark2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

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

/* PULSE DOT */
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 2rem;
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1;
}
.logo-text small {
  font-size: .7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.main-nav a {
  color: var(--gray-light);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.header-cta { flex-shrink: 0; }

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

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,39,26,.2) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
}

.badge-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,39,26,.15);
  border: 1px solid rgba(232,39,26,.4);
  color: var(--red-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
  animation: fadeInUp .6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 24px;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--white);
  animation: fadeInUp .6s .1s ease both;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--red);
  animation: fadeInUp .6s .2s ease both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp .6s .3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp .6s .4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeInUp .6s .5s ease both;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: .78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: fadeIn 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(6px) rotate(45deg); }
}

/* EMERGENCY BAR */
.emergency-bar {
  background: var(--red);
  padding: 14px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.emergency-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
}
.em-icon { font-size: 1.4rem; }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-tag { color: var(--red-light); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--gray); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(232,39,26,.1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.card-featured {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}
.card-featured::before { height: 4px; }
.card-featured h3 { color: var(--white); }
.card-featured p { color: var(--gray); }
.card-featured .service-list li { color: var(--gray-light); }
.card-featured .service-list li::before { background: var(--red); }

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-card p { font-size: .92rem; color: #555; margin-bottom: 20px; line-height: 1.65; }
.service-list { margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 4px 0;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.service-link {
  font-weight: 700;
  font-size: .88rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ============ WHY US ============ */
.why-us {
  background: var(--dark);
  padding: 96px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-tag { color: var(--red-light); }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.why-text h2 em { font-style: normal; color: var(--red); }
.why-text > p { color: var(--gray); margin-bottom: 40px; }

.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feat strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.why-feat p { color: var(--gray); font-size: .88rem; margin: 0; }

.why-visual { display: flex; flex-direction: column; gap: 20px; }
.why-card-big {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.wc-number {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red);
  line-height: 1;
}
.wc-number span { font-size: 2.4rem; color: var(--white); }
.wc-label { color: var(--gray); font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; margin: 8px 0 20px; }
.wc-bar {
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.wc-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 999px;
  animation: fillBar 2s 1s ease both;
}
@keyframes fillBar { from { width: 0; } }

.why-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-mini-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.why-mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.why-mini-card span { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-block {}
.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.img-placeholder {
  background: var(--dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
}
.img-placeholder span { font-size: 3rem; }
.img-placeholder p { font-size: 1rem; font-weight: 600; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.about-badge span { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

.about-text { padding-top: 20px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-text h2 em { font-style: normal; color: var(--red); }
.about-text p { color: #555; margin-bottom: 16px; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.about-tags span {
  background: rgba(232,39,26,.07);
  color: var(--red-dark);
  border: 1px solid rgba(232,39,26,.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-placeholder span { transform: scale(1.2); }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-placeholder {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  height: 100%;
  min-height: 160px;
}
.gallery-tall .gallery-placeholder { aspect-ratio: auto; }
.gallery-wide .gallery-placeholder { aspect-ratio: 16/7; }
.gallery-placeholder span { font-size: 2.4rem; transition: transform var(--transition); }
.gallery-placeholder p { font-size: .9rem; font-weight: 600; }
.gallery-placeholder small { font-size: .75rem; opacity: .6; }

.gallery-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-featured {
  background: var(--dark);
  border-color: transparent;
  grid-column: span 2;
}
.review-featured .review-stars { color: var(--yellow); font-size: 1.3rem; }
.review-featured p { color: var(--gray-light); font-size: 1.1rem; }
.review-featured .reviewer strong { color: var(--white); }
.review-featured .reviewer small { color: var(--gray); }

.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: .1em; }
.review-card > p {
  color: #444;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .95rem; }
.reviewer small { font-size: .78rem; color: var(--gray); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-item a { color: var(--yellow); font-size: 1.1rem; font-weight: 700; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { color: var(--gray); font-size: .9rem; }

.map-placeholder {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  cursor: pointer;
  transition: border-color var(--transition);
  margin-top: 8px;
}
.map-placeholder:hover { border-color: rgba(255,255,255,.2); }
.map-placeholder span { font-size: 2rem; }
.map-placeholder p { font-weight: 600; }
.map-placeholder small { font-size: .78rem; opacity: .6; }

/* FORM */
.contact-form-wrap {}
.contact-form, .form-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-cond);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 4px;
}
.form-sub { color: var(--gray); font-size: .9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,39,26,.12);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: .78rem; color: var(--gray); margin-top: 14px; }

.form-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-icon { font-size: 3rem; }
.form-success h3 { font-size: 1.6rem; color: var(--dark); }
.form-success p { color: var(--gray); }
.form-success a { color: var(--red); font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  padding: 72px 0 0;
  color: var(--gray);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.logo-footer .logo-text strong { font-size: 1.4rem; }
.footer-desc { color: var(--gray); font-size: .88rem; margin: 16px 0 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 1.4rem;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--gray);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-light);
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.footer-hours {
  color: var(--gray);
  font-size: .84rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* FLOAT BUTTONS */
.float-call, .float-wa {
  position: fixed;
  right: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  z-index: 90;
  transition: all var(--transition);
  padding: 14px 22px;
}
.float-call {
  bottom: 96px;
  background: var(--red);
  color: var(--white);
  animation: ringBounce 3s ease infinite;
}
.float-wa {
  bottom: 28px;
  background: var(--wa-green);
  color: var(--white);
}
.float-call:hover, .float-wa:hover { transform: scale(1.06); }
@keyframes ringBounce {
  0%, 90%, 100% { transform: translateY(0); }
  93% { transform: translateY(-6px); }
  96% { transform: translateY(-3px); }
}

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

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

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 99; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.2rem; }
  .header-cta { display: none; }
  .hamburger { display: flex; z-index: 100; }
  
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
  
  .hero-stats { justify-content: center; }
  .stat { padding: 0 16px; }
  
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  
  .float-call span { display: none; }
  .float-call { padding: 16px; }
  .float-wa { padding: 16px; }
  .float-call span { display: none; }
  
  .why-cards-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
}

/* ============ BEKİRHAN MARKA LOGO ============ */
.logo-b {
  animation: none !important;
  font-family: 'Bebas Neue', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #C9A84C;
  background: #0A0A0A;
  border: 2px solid #C9A84C;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

/* Gold accent for Bekirhan brand */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
}

.logo-text strong { color: #C9A84C !important; }
.logo-text small  { color: rgba(201,168,76,.6) !important; }

/* Override red accents to gold for brand consistency */
.site-header .btn-urgent {
  background: #C9A84C;
  color: #0A0A0A;
  font-weight: 900;
}
.site-header .btn-urgent:hover {
  background: #E8C96A;
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

.badge-alert {
  background: rgba(201,168,76,.15) !important;
  border-color: rgba(201,168,76,.45) !important;
  color: #E8C96A !important;
}

/* Footer gold phone */
.footer-phone { color: #C9A84C !important; }

/* Float call button gold */
.float-call { background: #C9A84C !important; color: #0A0A0A !important; font-weight: 900; }
.float-call:hover { box-shadow: 0 8px 28px rgba(201,168,76,.45) !important; }

/* Section tags gold tint */
.section-tag {
  background: rgba(201,168,76,.1) !important;
  color: #B8922A !important;
}

/* About badge gold */
.about-badge { background: #C9A84C !important; color: #0A0A0A !important; }

/* Emergency bar dark gold */
.emergency-bar { background: #1A1505; border-top: 2px solid #C9A84C; border-bottom: 2px solid #C9A84C; }
.emergency-text { color: #E8C96A !important; }
.emergency-bar .btn-urgent { background: #C9A84C; color: #0A0A0A; }
