/* Zeytinburnu Anahtarcı — Modern Tasarım v2 */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.45);
  --dark: #020617;
  --light: #f8fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --success: #10b981;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --font: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ----- Header Modern ----- */
.site-header-v2 {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.header-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-v2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo-v2 span { color: var(--accent); }
.nav-desktop-v2 { display: none; }
.nav-desktop-v2 a {
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-desktop-v2 a:hover { color: var(--accent); background: rgba(245,158,11,0.08); }
.cta-header-v2 {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-header-v2:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); color: var(--white) !important; }
.hamburger-v2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-v2 span { width: 22px; height: 2px; background: var(--primary); border-radius: 1px; }

@media (min-width: 768px) {
  .nav-desktop-v2 { display: flex; align-items: center; gap: 0.25rem; }
  .cta-header-v2 { display: inline-flex; }
  .hamburger-v2 { display: none; }
}

.nav-mobile-v2 {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 199;
  padding: 5rem 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-v2.open { display: flex; }
.nav-mobile-v2 a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--radius-sm);
}
.nav-mobile-v2 .cta-header-v2 { display: inline-flex; margin-top: 1rem; }

/* ----- Hero Full ----- */
.hero-v2 {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: var(--primary) url('../assets/images/03.jpeg') center/cover no-repeat;
}
.hero-v2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.75) 50%, rgba(15,23,42,0.6) 100%);
}
.hero-v2.hero-v2-short { min-height: 45vh; }
.hero-v2.hero-v2-urgency .hero-v2-bg { background: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, var(--accent) 100%) center/cover no-repeat; }
.hero-v2.hero-v2-urgency .hero-v2-bg::after { background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%); }
.hero-v2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}
.hero-v2-short .hero-v2-inner { padding: 2.5rem 1.5rem 3rem; }
.hero-v2 h1 {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-v2 .sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-v2 .sub strong { color: var(--accent); }
.hero-v2-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-v2:hover { transform: translateY(-3px); }
.btn-v2-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-v2-primary:hover { box-shadow: 0 12px 36px var(--accent-glow); }
.btn-v2-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-v2-whatsapp:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.btn-v2-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-v2-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.hero-v2-tel {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.hero-v2-tel a { color: var(--white); text-decoration: none; }
.hero-v2-tel a:hover { color: var(--accent); }
.trust-bar-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.95;
  margin-top: 2rem;
}
.trust-bar-v2 span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ----- Sticky CTA bar (high engagement) ----- */
.sticky-cta-bar {
  position: sticky;
  top: 0;
  z-index: 150;
  background: linear-gradient(90deg, var(--accent) 0%, #ea580c 100%);
  color: var(--white);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.sticky-cta-bar .tel { font-weight: 800; font-size: 1.1rem; }
.sticky-cta-bar a { color: var(--white); }
.sticky-cta-bar .btn-v2 { padding: 0.5rem 1rem; font-size: 0.95rem; }
.sticky-cta-bar .btn-v2-outline { border-color: rgba(255,255,255,0.9); }
@media (max-width: 767px) { .sticky-cta-bar { display: none !important; } }

/* ----- Sections ----- */
.section-v2 {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title-v2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.section-desc-v2 {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ----- Services grid modern ----- */
.services-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid-v2 { grid-template-columns: repeat(4, 1fr); } }
.card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.card-v2-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.08) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.card-v2 h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
}
.card-v2 p { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.card-v2 .link-v2 {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card-v2 .link-v2:hover { text-decoration: underline; }

/* ----- Why us with image ----- */
.why-v2-wrap {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .why-v2-wrap { grid-template-columns: 380px 1fr; } }
.why-v2-img {
  min-height: 280px;
  background: var(--primary) url('../assets/images/sc6jwbsc6jwbsc6j.jpg') center top / cover;
}
.why-v2-content { padding: 2rem 1.75rem; }
.why-v2-content h2 { font-family: var(--font-head); font-size: 1.35rem; margin: 0 0 1rem; color: var(--primary); }
.why-list-v2 { list-style: none; padding: 0; margin: 0; }
.why-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.why-list-v2 li:last-child { border-bottom: none; }
.why-list-v2 .icon { font-size: 1.25rem; flex-shrink: 0; }
.why-list-v2 strong { display: block; margin-bottom: 0.2rem; color: var(--primary); font-size: 0.95rem; }
.why-list-v2 div span { font-size: 0.9rem; color: var(--text-muted); display: block; }

/* ----- Neighborhoods ----- */
.neighborhood-pills-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.neighborhood-pills-v2 a {
  padding: 0.55rem 1.1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.neighborhood-pills-v2 a:hover {
  background: var(--accent);
  transform: scale(1.03);
}

.neighborhood-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.neighborhood-grid-v2 a {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,0.06);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.neighborhood-grid-v2 a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.3);
}
.neighborhood-grid-v2 h3 { font-family: var(--font-head); font-size: 1rem; margin: 0 0 0.35rem; color: var(--primary); }
.neighborhood-grid-v2 .meta { font-size: 0.85rem; color: var(--accent); margin-bottom: 0.5rem; }
.neighborhood-grid-v2 .link-v2 { font-size: 0.9rem; }
.map-wrap-v2 { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 1rem 0; aspect-ratio: 16/10; }
.map-wrap-v2 iframe { width: 100%; height: 100%; border: 0; }

/* ----- FAQ ----- */
.faq-list-v2 { max-width: 700px; margin: 0 auto; }
.faq-item-v2 {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
}
.faq-q-v2 {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q-v2::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.faq-item-v2.open .faq-q-v2::after { content: '−'; }
.faq-a-v2 {
  padding: 0 1.25rem 1rem;
  display: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item-v2.open .faq-a-v2 { display: block; }

/* ----- İç sayfa içerik alanı ----- */
.page-content-v2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.page-content-v2 h1 { font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--primary); margin: 0 0 1rem; }
.page-content-v2 h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: 2rem 0 0.75rem; }
.page-content-v2 p { margin: 0 0 1rem; color: var(--text); }
.page-content-v2 ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.page-content-v2 .table-wrap { overflow-x: auto; margin: 1rem 0; }
.page-content-v2 table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.page-content-v2 th, .page-content-v2 td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(15,23,42,0.08); }
.page-content-v2 th { background: var(--primary); color: var(--white); font-weight: 600; }
.page-content-v2 tr:nth-child(even) { background: var(--light); }
.page-content-v2 .steps-list-v2 { counter-reset: step; list-style: none; padding: 0; margin: 1.5rem 0; }
.page-content-v2 .steps-list-v2 li { counter-increment: step; padding-left: 3rem; position: relative; margin-bottom: 1rem; }
.page-content-v2 .steps-list-v2 li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.page-content-v2 .map-wrap-v2 { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 1.5rem 0; aspect-ratio: 16/10; }
.page-content-v2 .map-wrap-v2 iframe { width: 100%; height: 100%; border: 0; }

/* ----- CTA Banner (high impact) ----- */
.cta-banner-v2 {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../assets/images/cta-bg.jpg') center/cover;
  opacity: 0.12;
}
.cta-banner-v2-inner { position: relative; z-index: 1; }
.cta-banner-v2 p { margin: 0 0 0.5rem; font-size: 1.15rem; }
.cta-banner-v2 .tel-v2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; margin: 0.5rem 0 1rem; }
.cta-banner-v2 .tel-v2 a { color: var(--white); }
.cta-banner-v2 .btn-v2 { margin: 0 0.25rem; }

/* ----- Galeri Bölümü ----- */
.gallery-section-v2 {
  padding: 4rem 1.5rem;
  background: var(--light);
}
.gallery-header-v2 { max-width: 1200px; margin: 0 auto 2rem; }
.gallery-grid-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid-v2 { grid-template-columns: 2fr 1fr 1fr; }
  .gallery-item-wide { grid-row: 1 / 3; }
}
.gallery-item-v2 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item-wide { aspect-ratio: 3/4; }
@media (max-width: 767px) {
  .gallery-item-wide { 
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
}
.gallery-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item-v2:hover img { transform: scale(1.05); }
.gallery-caption-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(15,23,42,0.85));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item-v2:hover .gallery-caption-v2 { transform: translateY(0); }

/* Usta profil kartı (hakkımızda) */
.owner-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .owner-card-v2 {
    flex-direction: row;
    align-items: stretch;
  }
}
.owner-card-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .owner-card-img {
    width: 260px;
    max-height: none;
    height: 100%;
  }
}
.owner-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.owner-card-body h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--primary); margin: 0 0 0.35rem; }
.owner-card-body .role { font-size: 0.9rem; color: var(--accent); font-weight: 600; margin: 0 0 1rem; }
.owner-card-body p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 0.75rem; line-height: 1.65; }

/* ----- Footer ----- */
.site-footer-v2 {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner-v2 {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-inner-v2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner-v2 { grid-template-columns: 2fr 1fr 1fr; } }

/* Brand */
.footer-brand-v2 .logo-v2 { color: var(--white); font-size: 1.15rem; }
.footer-brand-v2 p { opacity: 0.75; font-size: 0.95rem; margin: 0.6rem 0 0; line-height: 1.6; max-width: 280px; }

/* Links */
.footer-links-v2 h4,
.footer-contact-v2 h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  opacity: 1;
}
.footer-links-v2 ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-v2 li a {
  opacity: 0.75;
  font-size: 0.95rem;
  display: inline-block;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links-v2 li a:hover { opacity: 1; color: var(--accent); }

/* Contact */
.footer-contact-v2 { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-contact-v2 a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.75;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: opacity 0.2s, color 0.2s;
}
.footer-contact-v2 a:hover { opacity: 1; color: var(--accent); }
.footer-contact-v2 p { margin: 0.6rem 0 0; opacity: 0.6; font-size: 0.88rem; line-height: 1.5; }

/* Bottom bar */
.footer-bottom-v2 {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
}
.footer-bottom-v2 p { margin: 0; }

/* Neighborhood SEO links */
.footer-neighborhoods-v2 {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.1rem;
  font-size: 0.8rem;
  opacity: 0.55;
}
.footer-neighborhoods-v2 a {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.footer-neighborhoods-v2 a:hover { opacity: 1; color: var(--accent); }

/* ----- Mobile CTA + WhatsApp float ----- */
.mobile-cta-bar-v2 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--accent) 0%, #ea580c 100%);
  padding: 0.75rem 1rem;
  z-index: 180;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.2);
}
.mobile-cta-bar-v2 .flex-v2 {
  display: flex;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}
.mobile-cta-bar-v2 a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 700;
  border-radius: 12px;
  font-size: 0.95rem;
}
@media (max-width: 767px) { .mobile-cta-bar-v2 { display: block; } }
.whatsapp-float-v2 {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 170;
  transition: transform 0.2s;
}
.whatsapp-float-v2:hover { transform: scale(1.08); }
@media (max-width: 767px) { .whatsapp-float-v2 { display: none; } }

/* ----- Pulse animation for primary CTA ----- */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 8px 28px var(--accent-glow); }
  50% { box-shadow: 0 8px 36px rgba(245,158,11,0.6); }
}
.btn-v2-primary { animation: pulse-cta 2.5s ease-in-out infinite; }
