/*
Theme Name: Aproject KZ
Theme URI: https://aproject.kz
Author: Aproject Studio
Author URI: https://aproject.kz
Description: Профессиональная тема для студии дизайна интерьера Aproject.kz. Элегантный тёмный стиль с золотыми акцентами.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aproject
Tags: dark, luxury, interior-design, one-page, portfolio
*/

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #2980b9;
  --gold2: #3498db;
  --white: #f5f2ee;
  --gray: #888;
  --light: #d4cfc9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.3s;
}
#navbar.scrolled { background: rgba(10,10,10,0.97); }
.site-logo {
  display: flex; align-items: center; text-decoration: none;
}
.site-logo-img {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
#navbar.scrolled .site-logo-img { opacity: 0.95; }
.nav-menu { display: flex; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light); text-decoration: none; transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item a { color: var(--gold); }
.nav-phone {
  font-size: 13px; color: var(--gold); letter-spacing: 1px;
  text-decoration: none; font-weight: 500;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--white);
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold); color: var(--black);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer; text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); color: var(--black); }
.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent; color: var(--white);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  text-decoration: none; transition: border-color 0.3s, color 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION BASE ===== */
.site-section { padding: 100px 60px; }
.section-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.15; margin-bottom: 20px;
}
.section-sub {
  font-size: 12px; color: var(--gray); line-height: 1.8; max-width: 500px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero-section {
  height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1208 0%, #0a0a0a 40%, #0d1117 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.hero-image {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  background-size: cover; background-position: center;
  background-color: #1a1a1a; opacity: 0.5;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 680px;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300; line-height: 1.1; margin-bottom: 28px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 13px; line-height: 1.9; color: var(--light);
  max-width: 440px; margin-bottom: 44px; letter-spacing: 0.3px;
}
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats-section {
  background: var(--dark2); padding: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-top: 10px;
}

/* ===== VIDEOS ===== */
.videos-section { background: var(--dark); }
.video-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.video-card {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; cursor: pointer;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; filter: brightness(0.6);
}
.video-card:hover img { transform: scale(1.05); filter: brightness(0.8); }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.play-btn::after {
  content: '';
  border-style: solid; border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--gold); margin-left: 3px;
}
.video-card:hover .play-btn { background: var(--gold); }
.video-card:hover .play-btn::after { border-left-color: var(--black); }
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
}
.video-sub { font-size: 10px; letter-spacing: 2px; color: var(--light); margin-top: 4px; }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--black); }
.portfolio-filters {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 44px; justify-content: center;
}
.filter-btn {
  padding: 10px 22px;
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.portfolio-item {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.portfolio-item.featured { grid-column: span 2; aspect-ratio: auto; }
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; filter: brightness(0.75);
}
.portfolio-item:hover img { transform: scale(1.08); filter: brightness(0.9); }
.portfolio-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-hover { opacity: 1; }
.portfolio-hover-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--white);
}
.portfolio-hover-tag { font-size: 10px; letter-spacing: 2px; color: var(--gold); margin-top: 6px; }
.load-more-wrap { text-align: center; margin-top: 48px; }

/* ===== SERVICES ===== */
.services-section { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--dark2); padding: 50px 40px;
  position: relative; overflow: hidden; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-top: 2px solid var(--gold); }
.service-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(201,169,110,0.12); color: var(--gold);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.service-price-label { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.service-price-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--gold); font-weight: 300; }
.service-price-unit { font-size: 13px; color: var(--gray); }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin: 20px 0 16px; }
.service-features { list-style: none; margin-bottom: 32px; }
.service-features li {
  font-size: 12px; color: var(--gray); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px; line-height: 1.5;
}
.service-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ===== BEFORE/AFTER ===== */
.ba-section { background: var(--black); }
.ba-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ba-side { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ba-side img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); background: rgba(0,0,0,0.6); padding: 6px 14px;
}
.ba-label.gold { color: var(--gold); }

/* ===== DIRECTIONS ===== */
.directions-section { background: var(--dark); }
.dir-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; max-width: 900px; margin: 0 auto;
}
.dir-card {
  background: var(--dark2); padding: 50px 44px;
  display: flex; gap: 24px; align-items: flex-start; transition: background 0.3s;
}
.dir-card:hover { background: #1f1f1f; }
.dir-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.dir-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; }
.dir-desc { font-size: 12px; color: var(--gray); line-height: 1.8; }

/* ===== ABOUT ===== */
.about-section { background: var(--black); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.8); }
.about-img::before {
  content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(201,169,110,0.2); z-index: -1;
}
.about-facts { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.about-fact {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; color: var(--gold); font-weight: 300; line-height: 1; flex-shrink: 0;
}
.about-fact-title { font-size: 14px; color: var(--white); margin-bottom: 4px; font-weight: 500; }
.about-fact-text { font-size: 12px; color: var(--light); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section {
  background: var(--dark2); text-align: center; padding: 120px 60px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300;
  margin-bottom: 20px; line-height: 1.15;
}
.cta-desc { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 48px; }
.cta-form { display: flex; max-width: 500px; margin: 0 auto; }
.cta-form input {
  flex: 1; padding: 18px 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-right: none;
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 1px; outline: none;
}
.cta-form input::placeholder { color: var(--gray); }
.cta-form input:focus { border-color: rgba(201,169,110,0.4); }

/* ===== FOOTER ===== */
.site-footer {
  background: #070707; padding: 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; letter-spacing: 3px;
  color: var(--white); margin-bottom: 16px; display: block;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 12px; color: var(--gray); line-height: 1.8; }
.footer-col-title {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 12px; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-nav a:hover { color: var(--white); }
.footer-contact-info { font-size: 12px; color: var(--gray); line-height: 2.2; }
.footer-contact-info a { color: var(--gold); text-decoration: none; }
.footer-bottom {
  background: #070707; padding: 20px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--dark2);
  text-align: center;
}
.page-hero .section-tag { display: block; margin-bottom: 16px; }
.page-content { padding: 80px 60px; max-width: 900px; margin: 0 auto; }
.page-content p { font-size: 14px; line-height: 1.9; color: var(--light); margin-bottom: 20px; }
.page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin: 40px 0 16px; }
.page-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 30px 0 12px; color: var(--gold); }
.page-content ul { list-style: none; margin-bottom: 20px; }
.page-content ul li { padding: 8px 0; font-size: 13px; color: var(--gray); display: flex; gap: 10px; }
.page-content ul li::before { content: '—'; color: var(--gold); }

/* WordPress widgets */
.widget-area { padding: 40px 60px; background: var(--dark); }
.widget { margin-bottom: 40px; }
.widget-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 16px; color: var(--gold); }

/* WordPress galleries & images */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 11px; color: var(--gray); text-align: center; margin-top: 8px; }
img.alignleft { float: left; margin: 0 20px 20px 0; }
img.alignright { float: right; margin: 0 0 20px 20px; }
img.aligncenter { display: block; margin: 0 auto 20px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  #navbar { padding: 18px 24px; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,10,10,0.98); padding: 20px; gap: 20px; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .site-section, .cta-section { padding: 70px 24px; }
  .hero-content { padding: 0 24px; }
  .stats-section { padding: 40px 24px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 2; }
  .video-grid, .ba-container { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .site-footer { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP CTA БЛОК ===== */
.wa-cta-section {
  background: var(--dark2);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

/* Декоративные круги */
.wa-cta-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wa-cta-decor-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(41,128,185,0.07) 0%, transparent 70%);
}
.wa-cta-decor-2 {
  width: 300px; height: 300px;
  bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(41,128,185,0.05) 0%, transparent 70%);
}

.wa-cta-inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.wa-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.15;
  margin: 16px 0 20px;
  color: var(--white);
}

.wa-cta-desc {
  font-size: 14px; line-height: 1.9;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 48px;
}

/* Кнопка WhatsApp */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 13px; letter-spacing: 1.5px;
  font-weight: 600; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.wa-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.25);
  color: #fff;
}
.wa-btn:hover::before { opacity: 1; }
.wa-btn:active { transform: translateY(-1px); }

.wa-btn-icon {
  display: flex; align-items: center;
  flex-shrink: 0;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}
.wa-btn-text { letter-spacing: 2px; }
.wa-btn-arrow {
  font-size: 18px; margin-left: 4px;
  transition: transform 0.3s;
}
.wa-btn:hover .wa-btn-arrow { transform: translateX(5px); }

/* Дополнительные контакты под кнопкой */
.wa-cta-extras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wa-extra-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray);
  text-decoration: none; letter-spacing: 0.5px;
  transition: color 0.3s;
}
.wa-extra-link:hover { color: var(--gold); }
.wa-extra-icon { font-size: 14px; }
.wa-extra-divider {
  font-size: 11px; color: rgba(255,255,255,0.15);
  letter-spacing: 2px; text-transform: uppercase;
}

/* Плавающая кнопка WhatsApp (всегда видна) */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 500;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-float:hover { animation: none; transform: scale(1.1); }
.wa-float svg { fill: #fff; }
.wa-float-tooltip {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark2); color: var(--white);
  font-size: 11px; letter-spacing: 1px; white-space: nowrap;
  padding: 8px 14px; pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark2);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .wa-cta-section { padding: 80px 24px; }
  .wa-btn { padding: 18px 32px; font-size: 11px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
