/*
Theme Name: Owadah Honey Single Page
Theme URI: https://honey.electrobaz.com/
Author: Owadah Honey
Author URI: https://honey.electrobaz.com/
Description: Single-page Bangla/English landing page for খাঁটি সুন্দরবন ওয়াইল্ড মধু with WhatsApp CTA.
Version: 1.0
Text Domain: owadah-honey
*/

:root {
  --bg-dark: #052e16;
  --bg-dark-soft: #064e3b;
  --primary: #15803d;
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
  --text-main: #f9fafb;
  --text-muted: #d1d5db;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #064e3b 0, #020617 55%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.custom-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Legacy logo-mark support (if needed) */
.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-image: url('images/owadah-logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  display: none;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-text-sub {
  font-size: 0.67rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-link {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background-color var(--transition-fast), color var(--transition-fast),
              transform var(--transition-fast);
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.16);
  color: #fefce8;
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1f2937;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(244, 174, 31, 0.5);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  border: none;
}

.nav-cta span { font-size: 0.9rem; }

.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(244, 174, 31, 0.7);
  filter: brightness(1.04);
}

.nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 30% 20%, #0f172a 0, #020617 75%);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast),
              bottom var(--transition-fast);
}

.nav-toggle-line::before { top: -5px; }
.nav-toggle-line::after { bottom: -5px; }

.nav-toggle.active .nav-toggle-line { background: transparent; }

.nav-toggle.active .nav-toggle-line::before {
  top: 0;
  transform: rotate(42deg);
}

.nav-toggle.active .nav-toggle-line::after {
  bottom: 0;
  transform: rotate(-42deg);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    background: rgba(15, 23, 42, 0.97);
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
}

main { flex: 1; }

/* Hero */
.hero { padding: 2.5rem 0 2.75rem; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero { padding: 2rem 0 2.25rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.hero-badge-main {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.55);
  font-size: 0.78rem;
  color: #bbf7d0;
}

.hero-badge-main-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fef9c3 0, #f97316 50%, #92400e 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.7);
}

.hero-badge-tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

h1.hero-title {
  font-size: clamp(2.2rem, 3vw + 1.5rem, 3rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.hero-highlight {
  background: linear-gradient(120deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.hero-subtitle span {
  color: #fef3c7;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.55rem 0.15rem 0.2rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(75, 85, 99, 0.7);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.6);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
              filter var(--transition-fast), translate var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 50px rgba(22, 163, 74, 0.8);
  filter: brightness(1.05);
}

.btn-primary-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e5f2ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: #fef3c7;
  font-weight: 600;
}

/* Hero Right / Image Card */
.hero-card {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.96));
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% 8% 40% auto;
  background: radial-gradient(circle at 0% 0%, rgba(250, 250, 250, 0.22) 0, transparent 55%);
  opacity: 0.8;
  mix-blend-mode: screen;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fef9c3 0, #f59e0b 50%, #b45309 100%);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.8);
}

.hero-bottle-wrap { position: relative; margin-bottom: 1.1rem; }

.bottle-card {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 1));
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.1rem 1rem;
  position: relative;
  overflow: hidden;
}

.bottle-placeholder {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.bottle-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bottle-shape {
  width: 145px;
  height: 230px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #0f172a 0, #fecb4f 15%, #f59e0b 45%, #b45309 78%, #1f2937 100%);
  box-shadow:
    0 40px 70px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.bottle-shape::before {
  content: "";
  position: absolute;
  inset: 3% 18% 68%;
  border-radius: 999px 999px 45px 45px;
  background: linear-gradient(to bottom, #020617, #020617);
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.9);
}

.bottle-shape::after {
  content: "";
  position: absolute;
  inset: 18% 14% 15%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(254, 249, 195, 0.9) 0, #fbbf24 32%, #f97316 65%, #b45309 100%);
  opacity: 0.98;
}

.bottle-label {
  position: absolute;
  inset: 40% 23% 10%;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.4rem;
  text-align: center;
}

.bottle-label-logo {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.08rem;
}

.bottle-label-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.05rem;
}

.bottle-label-tag {
  font-size: 0.6rem;
  color: #a5b4fc;
}

.bottle-glass-highlight {
  position: absolute;
  inset: 16% auto 22% 26%;
  width: 20px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.8), transparent);
  opacity: 0.75;
  filter: blur(0.6px);
}

.bottle-shadow {
  position: absolute;
  inset: auto 16% 3%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.9) 0, transparent 70%);
  filter: blur(8px);
}

.hero-bottle-caption {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-bottle-caption strong {
  color: #fef3c7;
  font-weight: 600;
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card-bottom span.highlight {
  color: #bbf7d0;
  font-weight: 500;
}

.hero-card-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.65);
  color: #bbf7d0;
  font-size: 0.72rem;
}

/* Sections */
.section { padding: 1.5rem 0 1.7rem; }

.section-header { margin-bottom: 1.1rem; }

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.15rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a3e635;
  margin-bottom: 0.3rem;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Why Glass */
.glass-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}

@media (max-width: 960px) {
  .glass-grid { grid-template-columns: minmax(0, 1fr); }
}

.glass-card {
  background: rgba(15, 23, 42, 0.88);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.1rem 1.1rem 1.1rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.glass-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.95rem;
}

.glass-text strong { color: #fef3c7; }

.glass-bullets {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.glass-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(74, 222, 128, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #bbf7d0;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.glass-side {
  font-size: 0.86rem;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: var(--radius-lg);
  padding: 0.9rem 0.95rem;
}

.glass-side-title {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.glass-side-note {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 0.4rem;
}

/* Sundarban Section */
.sundarban-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .sundarban-grid { grid-template-columns: minmax(0, 1fr); }
}

.sundarban-card {
  background: radial-gradient(circle at top, rgba(22, 163, 74, 0.18), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 1.05rem 1.1rem 1.1rem;
  box-shadow: 0 18px 50px rgba(6, 95, 70, 0.7);
}

.sundarban-text {
  font-size: 0.96rem;
  color: var(--text-main);
}

.sundarban-text p + p { margin-top: 0.6rem; }

.sundarban-tags {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.76rem;
}

.sundarban-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.7);
  color: #bbf7d0;
  background: rgba(15, 23, 42, 0.85);
}

.sundarban-panel {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1rem 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.6rem;
}

.sundarban-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.7rem;
  align-items: start;
}

@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: minmax(0, 1fr); }
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.benefit-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.55rem 0.65rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(55, 65, 81, 0.85);
  font-size: 0.92rem;
  color: var(--text-main);
}

.benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(248, 250, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-item p { font-size: 0.9rem; }

.benefits-side {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 250, 252, 0.1);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.benefits-side strong { color: #fef3c7; }

/* Trust Section */
.trust { padding: 1.4rem 0 1.8rem; }

.trust-box {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.28), rgba(21, 128, 61, 0.95));
  border-radius: 1.5rem;
  border: 1px solid rgba(190, 242, 100, 0.7);
  box-shadow: 0 22px 60px rgba(22, 163, 74, 0.75);
  padding: 1.15rem 1.4rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.3rem;
  align-items: center;
  color: #f7fee7;
}

@media (max-width: 960px) {
  .trust-box { grid-template-columns: minmax(0, 1fr); }
}

.trust-title {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.trust-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(254, 249, 195, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Video Section */
.video-section {
  padding: 1.4rem 0 1.8rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  background: #020617;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Contact / CTA */
.contact { padding: 1.2rem 0 2.2rem; }

.contact-box {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 0.96));
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-title { font-size: 1.25rem; }

.contact-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.contact-extra {
  font-size: 0.86rem;
  color: #e5e7eb;
}

.contact-extra strong { color: #fbbf24; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast),
              border-color var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
  border-color: rgba(248, 250, 252, 0.7);
}

/* Footer */
footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.9rem 0 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  background: radial-gradient(circle at top, #020617 0, #000000 60%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-inner span strong { color: #e5e7eb; }

.footer-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: #e5e7eb; }

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  right: 1.05rem;
  bottom: 1.1rem;
  z-index: 50;
}

.whatsapp-floating a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.9);
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.whatsapp-floating a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 1);
}

.wa-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ecfdf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .whatsapp-floating a {
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
  }
}

