@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg: #0a0e17;
  --surface: #111827;
  --surface2: #1a2235;
  --border: #1e293b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --green: #22c55e;
  --red: #ef4444;
  --white: #ffffff;
  --radius: 12px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Outfit', 'Segoe UI', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { cursor:pointer; font-family:inherit; }
input, select, textarea { font-family:inherit; }
::selection { background:var(--accent); color:#000; }

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  padding: 8px 16px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-text { font-size:13px; font-weight:700; color:#000; }
.topbar-btns { display:flex; gap:8px; }
.topbar-btn {
  background: #000;
  color: #f59e0b;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s;
}
.topbar-btn:hover { transform:scale(1.03); }
.topbar-btn.wa { background:#25D366; color:#fff; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display:flex; align-items:center; gap:10px; cursor:pointer; }
.logo-icon { font-size:32px; filter:drop-shadow(0 0 8px rgba(245,158,11,0.4)); }
.logo-text { font-size:22px; font-weight:900; color:var(--accent); letter-spacing:-0.5px; }
.logo-sub { font-size:11px; color:var(--text-muted); letter-spacing:0.5px; }

.nav-links { display:flex; gap:4px; align-items:center; }
.nav-link {
  background:none; border:none; color:var(--text-muted);
  padding:8px 14px; font-size:14px; font-weight:500;
  border-radius:8px; transition:all 0.25s;
}
.nav-link:hover, .nav-link.active { color:var(--accent); background:rgba(245,158,11,0.08); }
.nav-cta {
  background:var(--accent); color:#000; border:none;
  padding:8px 18px; border-radius:8px; font-size:14px;
  font-weight:700; margin-left:8px; transition:all 0.25s;
}
.nav-cta:hover { background:var(--accent-dark); transform:scale(1.03); }
.nav-admin {
  background:rgba(139,92,246,0.12); color:#a78bfa;
  border:none; padding:8px 14px; border-radius:8px;
  font-size:13px; margin-left:4px; font-weight:600;
}

/* Hamburger */
.hamburger {
  display:none; background:none; border:none;
  flex-direction:column; gap:5px; padding:8px;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--text); transition:all 0.3s;
}
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display:none; padding:8px 16px; 
  border-top:1px solid var(--border);
  flex-direction:column;
}
.mobile-menu.show { display:flex; }
.mobile-menu a, .mobile-menu button {
  display:block; width:100%; text-align:left;
  background:none; border:none; color:var(--text);
  padding:14px 8px; font-size:15px; font-weight:500;
  border-bottom:1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu button:hover { color:var(--accent); }

@media (max-width:768px) {
  .nav-links { display:none !important; }
  .hamburger { display:flex !important; }
}

/* ===== HERO ===== */
.hero {
  position:relative;
  background: linear-gradient(135deg, #0a0e17 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 16px 60px;
  overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 80% 80%, rgba(37,211,102,0.04) 0%, transparent 50%);
}
.hero-content {
  position:relative; max-width:1200px;
  margin:0 auto; text-align:center;
}
.hero-badge {
  display:inline-block; 
  background:rgba(245,158,11,0.12); color:var(--accent);
  padding:8px 22px; border-radius:24px; font-size:14px; font-weight:600;
  margin-bottom:24px; border:1px solid rgba(245,158,11,0.2);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(245,158,11,0.15); }
  50% { box-shadow:0 0 0 8px rgba(245,158,11,0); }
}
.hero h1 {
  font-size: clamp(32px,6vw,58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color:var(--accent); text-shadow:0 0 40px rgba(245,158,11,0.3); }
.hero-sub {
  font-size: clamp(16px,2.5vw,20px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 400;
}
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:52px; }
.btn-primary {
  background:linear-gradient(135deg,#f59e0b,#d97706); color:#000;
  padding:14px 28px; border-radius:10px; font-size:16px; font-weight:700;
  box-shadow:0 4px 24px rgba(245,158,11,0.3);
  transition:all 0.3s; border:none; display:inline-block;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(245,158,11,0.4); }
.btn-wa {
  background:transparent; color:#25D366;
  padding:14px 28px; border-radius:10px; font-size:16px;
  font-weight:600; border:2px solid #25D366;
  transition:all 0.3s; display:inline-block;
}
.btn-wa:hover { background:#25D366; color:#fff; }
.btn-ghost {
  background:transparent; color:var(--text-muted);
  padding:14px 28px; border-radius:10px; font-size:15px;
  border:1px solid var(--border); transition:all 0.3s; display:inline-block;
}
.btn-ghost:hover { border-color:var(--accent); color:var(--accent); }

.hero-stats { display:flex; justify-content:center; gap:clamp(20px,5vw,56px); flex-wrap:wrap; }
.hero-stat { text-align:center; }
.hero-stat-num { font-size:clamp(24px,4vw,40px); font-weight:900; color:var(--accent); }
.hero-stat-label { font-size:13px; color:var(--text-muted); margin-top:2px; }

/* ===== SECTIONS ===== */
.section { padding:64px 16px; }
.section-dark { padding:64px 16px; background:var(--surface); }
.container { max-width:1200px; margin:0 auto; }
.section-header { text-align:center; margin-bottom:48px; }
.section-tag {
  display:inline-block; background:rgba(245,158,11,0.1); color:var(--accent);
  padding:6px 18px; border-radius:20px; font-size:12px; font-weight:700;
  letter-spacing:1px; margin-bottom:12px; text-transform:uppercase;
}
.section-tag.light { background:rgba(234,179,8,0.15); color:#eab308; }
.section-title {
  font-size: clamp(24px,4vw,38px); font-weight:800;
  color:var(--text); margin:0 0 12px;
}
.section-title.white { color:var(--white); }
.section-sub { font-size:16px; color:var(--text-muted); max-width:600px; margin:0 auto; font-weight:400; }

/* ===== PAGE HEADER ===== */
.page-header { text-align:center; margin-bottom:48px; padding-top:16px; }
.page-title {
  font-size:clamp(28px,5vw,42px); font-weight:900;
  color:var(--white); margin:0 0 12px;
}

/* ===== FEATURE CARDS ===== */
.feature-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.feature-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:32px; text-align:center;
  transition:all 0.35s;
}
.feature-card:hover { border-color:rgba(245,158,11,0.25); transform:translateY(-4px); }
.feature-icon { font-size:42px; margin-bottom:16px; }
.feature-title { font-size:18px; font-weight:700; color:var(--white); margin-bottom:8px; }
.feature-desc { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  padding:52px 16px; text-align:center;
}
.cta-banner h2 { font-size:clamp(22px,3.5vw,34px); font-weight:800; color:#000; margin-bottom:12px; }
.cta-banner p { font-size:16px; color:rgba(0,0,0,0.7); margin-bottom:24px; }
.cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-dark {
  background:#000; color:var(--accent);
  padding:14px 28px; border-radius:10px;
  font-size:16px; font-weight:700; display:inline-block;
  transition:all 0.3s;
}
.btn-dark:hover { transform:translateY(-2px); }
.btn-green {
  background:#25D366; color:#fff;
  padding:14px 28px; border-radius:10px;
  font-size:16px; font-weight:700; display:inline-block;
  transition:all 0.3s;
}
.btn-green:hover { transform:translateY(-2px); }

/* ===== SERVICE CARDS ===== */
.service-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }
.service-card {
  background:rgba(255,255,255,0.02); border:1px solid var(--border);
  border-radius:14px; padding:28px; transition:all 0.35s;
}
.service-card:hover { border-color:rgba(245,158,11,0.2); background:rgba(255,255,255,0.04); }
.service-icon { font-size:38px; margin-bottom:14px; }
.service-title { font-size:17px; font-weight:700; color:var(--white); margin-bottom:8px; }
.service-desc { font-size:14px; color:var(--text-muted); line-height:1.6; }
.service-call-btn {
  display:inline-block; margin-top:14px;
  background:rgba(245,158,11,0.1); color:var(--accent);
  padding:8px 18px; border-radius:8px; font-size:13px;
  font-weight:600; border:1px solid rgba(245,158,11,0.2);
  transition:all 0.25s;
}
.service-call-btn:hover { background:rgba(245,158,11,0.2); }

/* ===== PARTNER BANNER ===== */
.partner-banner {
  background:linear-gradient(135deg,#1e3a5f,#0f2744);
  border-radius:20px; padding:52px 32px; text-align:center;
  border:1px solid rgba(245,158,11,0.12);
}
.partner-banner h2 { font-size:clamp(22px,3.5vw,34px); font-weight:800; color:var(--white); margin-bottom:12px; }
.partner-banner p { font-size:16px; color:var(--text-muted); margin-bottom:24px; }

/* ===== PROSE ===== */
.prose { max-width:800px; margin:0 auto; font-size:16px; line-height:1.8; color:var(--text-muted); }
.prose h2 { font-size:22px; font-weight:700; color:var(--white); margin:36px 0 12px; }
.prose p { margin-bottom:16px; }

.about-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:12px; margin:28px 0;
}
.about-item {
  display:flex; gap:10px; align-items:center;
  background:var(--surface); padding:14px 16px;
  border-radius:10px; border:1px solid var(--border);
}
.about-item span:last-child { font-size:14px; font-weight:600; color:var(--text); }

/* ===== CITIES ===== */
.search-input {
  width:100%; max-width:420px; margin:0 auto 32px;
  display:block; padding:14px 20px; border-radius:12px;
  border:1px solid var(--border); background:var(--surface);
  color:var(--text); font-size:15px; outline:none;
}
.search-input:focus { border-color:var(--accent); }
.city-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:12px; }
.city-card {
  display:flex; align-items:center; gap:10px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:10px; padding:12px 16px; transition:all 0.25s;
}
.city-card:hover { border-color:rgba(245,158,11,0.2); }
.city-name { flex:1; font-size:14px; font-weight:600; color:var(--text); }
.city-call {
  background:rgba(245,158,11,0.1); color:var(--accent);
  padding:6px 14px; border-radius:6px; font-size:12px;
  font-weight:700; border:none; transition:all 0.25s;
}
.city-call:hover { background:rgba(245,158,11,0.2); }

/* ===== BLOG ===== */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:24px; }
.blog-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; cursor:pointer;
  transition:all 0.35s;
}
.blog-card:hover { border-color:rgba(245,158,11,0.2); transform:translateY(-4px); }
.blog-card-img {
  height:190px; background:var(--surface2);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-card-placeholder { font-size:48px; opacity:0.25; }
.blog-card-body { padding:24px; }
.blog-date { font-size:12px; color:var(--text-muted); font-weight:500; }
.blog-title { font-size:18px; font-weight:700; color:var(--white); margin:8px 0; line-height:1.4; }
.blog-excerpt { font-size:14px; color:var(--text-muted); line-height:1.6; margin-bottom:14px; }
.blog-read-more { font-size:13px; color:var(--accent); font-weight:600; }

.blog-detail-img { width:100%; border-radius:16px; margin-bottom:24px; max-height:420px; object-fit:cover; }
.blog-detail-title {
  font-size:clamp(24px,4vw,38px); font-weight:800;
  color:var(--white); margin-bottom:12px; line-height:1.3;
}
.blog-detail-meta {
  display:flex; gap:20px; color:var(--text-muted); font-size:14px;
  margin-bottom:32px; padding-bottom:24px; border-bottom:1px solid var(--border);
}
.blog-detail-content { font-size:16px; color:var(--text); line-height:1.85; }
.back-btn {
  background:none; border:none; color:var(--accent);
  font-size:14px; cursor:pointer; margin-bottom:24px;
  padding:0; font-weight:600; transition:all 0.2s;
}
.back-btn:hover { color:var(--accent-dark); }

/* ===== CONTACT ===== */
.contact-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:32px; }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-item {
  display:flex; gap:16px; align-items:center;
  background:var(--surface); padding:20px; border-radius:12px;
  border:1px solid var(--border); transition:all 0.25s;
}
.contact-item:hover { border-color:rgba(245,158,11,0.15); }
.contact-icon {
  font-size:26px; width:52px; height:52px; min-width:52px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(245,158,11,0.1); border-radius:12px;
}
.contact-label { font-size:13px; color:var(--text-muted); margin-bottom:2px; }
.contact-value { font-size:16px; color:var(--white); font-weight:600; }
.contact-value a { color:var(--white); }
.contact-value a:hover { color:var(--accent); }

/* ===== FORMS ===== */
.form-box {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:32px;
}
.form-title { font-size:20px; font-weight:700; color:var(--white); margin-bottom:20px; }
.form-input {
  width:100%; padding:14px 16px; border-radius:10px;
  border:1px solid var(--border); background:var(--surface2);
  color:var(--text); font-size:14px; outline:none; margin-bottom:12px;
}
.form-input:focus { border-color:var(--accent); }
.form-input option { background:var(--surface); color:var(--text); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-submit {
  width:100%; padding:14px; border-radius:10px; border:none;
  background:linear-gradient(135deg,#f59e0b,#d97706); color:#000;
  font-size:16px; font-weight:700; cursor:pointer; transition:all 0.3s;
}
.form-submit:hover { transform:translateY(-1px); box-shadow:0 4px 20px rgba(245,158,11,0.3); }
.form-hint { font-size:12px; color:var(--text-muted); margin:8px 0 16px; }

.success-box { text-align:center; padding:40px 20px; }
.success-box .icon { font-size:52px; margin-bottom:12px; }
.success-box h3 { color:var(--green); margin-bottom:8px; font-size:20px; }
.success-box p { color:var(--text-muted); }

/* ===== APPLY ===== */
.apply-layout { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:32px; align-items:start; }
.benefits-box {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:32px;
}
.benefits-title { font-size:20px; font-weight:700; color:var(--white); margin-bottom:20px; }
.benefit-item { display:flex; gap:12px; align-items:center; margin-bottom:14px; font-size:15px; color:var(--text); }
.benefit-check { color:var(--green); font-size:18px; font-weight:700; }

/* ===== ADMIN ===== */
.admin-login-box {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:40px; max-width:420px;
  margin:40px auto;
}
.admin-login-box .icon { font-size:48px; text-align:center; }
.admin-login-box h2 { text-align:center; color:var(--white); margin:12px 0 24px; }

.admin-header { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; margin-bottom:24px; }
.logout-btn {
  background:rgba(239,68,68,0.1); color:var(--red);
  border:1px solid rgba(239,68,68,0.2); padding:8px 18px;
  border-radius:8px; font-size:13px; font-weight:600;
}
.logout-btn:hover { background:rgba(239,68,68,0.2); }

.admin-tabs { display:flex; gap:8px; margin-bottom:24px; flex-wrap:wrap; }
.admin-tab {
  background:var(--surface); border:1px solid var(--border);
  padding:10px 20px; border-radius:8px; color:var(--text-muted);
  font-size:14px; font-weight:600; transition:all 0.25s;
}
.admin-tab.active { background:rgba(245,158,11,0.1); border-color:rgba(245,158,11,0.3); color:var(--accent); }

.empty-state { text-align:center; padding:48px; }
.empty-state .icon { font-size:48px; margin-bottom:12px; }
.empty-state p { color:var(--text-muted); }

.app-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:12px; padding:20px; margin-bottom:12px;
  transition:all 0.25s;
}
.app-card:hover { border-color:rgba(245,158,11,0.15); }
.app-card-header { display:flex; justify-content:space-between; align-items:start; margin-bottom:12px; }
.app-name { font-size:16px; font-weight:700; color:var(--white); margin:0; }
.app-date { font-size:12px; color:var(--text-muted); }
.app-status {
  background:rgba(245,158,11,0.12); color:var(--accent);
  padding:4px 12px; border-radius:6px; font-size:12px; font-weight:600;
}
.app-details { display:flex; flex-wrap:wrap; gap:8px 20px; font-size:13px; color:var(--text-muted); margin-bottom:12px; }

.btn-delete {
  background:rgba(239,68,68,0.08); color:var(--red);
  border:1px solid rgba(239,68,68,0.15); padding:6px 14px;
  border-radius:6px; font-size:12px; font-weight:600;
}
.btn-delete:hover { background:rgba(239,68,68,0.15); }
.btn-edit {
  background:rgba(245,158,11,0.08); color:var(--accent);
  border:1px solid rgba(245,158,11,0.15); padding:6px 14px;
  border-radius:6px; font-size:12px; font-weight:600;
}
.btn-edit:hover { background:rgba(245,158,11,0.15); }

.add-blog-btn {
  background:var(--accent); color:#000; border:none;
  padding:10px 22px; border-radius:8px; font-size:14px;
  font-weight:700; margin-bottom:20px; transition:all 0.25s;
}
.add-blog-btn:hover { background:var(--accent-dark); }

.blog-admin-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:12px; padding:16px; margin-bottom:12px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.blog-admin-info { display:flex; gap:12px; align-items:center; }
.blog-admin-thumb { width:50px; height:50px; border-radius:8px; object-fit:cover; }
.blog-admin-title { font-size:15px; font-weight:600; color:var(--white); margin:0; }
.blog-admin-date { font-size:12px; color:var(--text-muted); }
.blog-admin-actions { display:flex; gap:8px; }

.blog-editor { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:32px; }
.blog-editor h3 { color:var(--white); margin-bottom:16px; }

.image-upload {
  background:var(--surface2); border:2px dashed var(--border);
  border-radius:12px; padding:24px; margin-bottom:16px; text-align:center;
}
.image-upload p { color:var(--text-muted); margin-bottom:10px; font-size:14px; }
.image-preview { max-width:300px; max-height:200px; border-radius:8px; margin:0 auto 12px; }
.upload-btn {
  background:rgba(245,158,11,0.1); color:var(--accent);
  border:1px solid rgba(245,158,11,0.2); padding:8px 18px;
  border-radius:8px; font-size:13px; font-weight:600;
  margin-right:8px;
}
.upload-btn:hover { background:rgba(245,158,11,0.2); }
.remove-img-btn {
  background:rgba(239,68,68,0.08); color:var(--red);
  border:1px solid rgba(239,68,68,0.15); padding:8px 18px;
  border-radius:8px; font-size:13px; font-weight:600;
}
.editor-actions { display:flex; gap:12px; justify-content:flex-end; margin-top:16px; }
.btn-cancel {
  background:var(--surface2); color:var(--text-muted);
  border:1px solid var(--border); padding:12px 24px;
  border-radius:8px; font-size:14px; font-weight:600;
}

/* ===== FOOTER ===== */
.footer {
  background:var(--surface); border-top:1px solid var(--border);
  padding:52px 16px 24px;
}
.footer-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:32px; margin-bottom:32px;
}
.footer-col { display:flex; flex-direction:column; gap:8px; }
.footer-logo { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.footer-logo-text { font-size:20px; font-weight:800; color:var(--accent); }
.footer-desc { font-size:13px; color:var(--text-muted); line-height:1.7; }
.footer-title { font-size:15px; font-weight:700; color:var(--white); margin-bottom:4px; }
.footer-link {
  font-size:13px; color:var(--text-muted); cursor:pointer;
  background:none; border:none; text-align:left; padding:2px 0;
  transition:color 0.2s;
}
.footer-link:hover { color:var(--accent); }
.footer-bottom {
  text-align:center; padding-top:24px;
  border-top:1px solid var(--border);
  font-size:13px; color:var(--text-muted);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position:fixed; bottom:20px; right:20px;
  display:flex; flex-direction:column; gap:10px; z-index:999;
}
.floating-phone {
  background:linear-gradient(135deg,#f59e0b,#d97706); color:#000;
  padding:12px 22px; border-radius:12px; font-size:14px; font-weight:700;
  box-shadow:0 4px 24px rgba(245,158,11,0.35); text-align:center;
  transition:all 0.3s;
}
.floating-phone:hover { transform:scale(1.05); }
.floating-wa {
  background:#25D366; color:#fff;
  width:54px; height:54px; border-radius:27px;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; box-shadow:0 4px 20px rgba(37,211,102,0.35);
  align-self:flex-end; transition:all 0.3s;
}
.floating-wa:hover { transform:scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width:640px) {
  .hero { padding:48px 16px 40px; }
  .hero-stats { gap:16px; }
  .form-row { grid-template-columns:1fr; }
  .topbar-inner { justify-content:center; text-align:center; }
  .topbar-text { width:100%; text-align:center; }
  .topbar-btns { width:100%; justify-content:center; }
  .floating-phone { padding:10px 16px; font-size:13px; }
  .section, .section-dark { padding:40px 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease-out both; }
