/* ═══════════════════════════════════════════════════════════════════
   TAYS B2B — Bedbank Landing Page
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --accent: #0d9488;
  --accent-light: #5eead4;
  --accent-dark: #0f766e;
  --accent-bg: #f0fdfa;
  --green: #059669;
  --green-light: #d1fae5;
  --blue: #2563eb;
  --blue-light: #dbeafe;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --rose: #e11d48;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--gray-800); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all 0.2s ease; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-ghost-b2b { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.btn-ghost-b2b:hover { background: rgba(255,255,255,0.05); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* Nav */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-100); transition: all 0.3s; }
#navbar.scrolled { background: rgba(255,255,255,0.95); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gray-900); font-size: 18px; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; }
.logo-icon.b2b { background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--gray-500); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gray-900); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--gray-600); margin: 4px 0; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 24px; gap: 12px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .nav-actions .btn { display: none; }
}

/* Hero */
.hero-b2b { padding: 120px 0 80px; position: relative; overflow: hidden; background: linear-gradient(180deg, #042f2e 0%, #064e3b 50%, #0f172a 100%); color: #fff; }
.hero-b2b .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.b2b-badge { display: inline-flex; padding: 6px 14px; background: rgba(94,234,212,0.12); color: var(--accent-light); border: 1px solid rgba(94,234,212,0.2); border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-b2b h1 { font-size: 48px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.gradient-text-b2b { background: linear-gradient(135deg, #5eead4 0%, #67e8f9 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 16px; font-weight: 800; }
.stat-b2b { color: var(--accent-light); }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.35); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.05; }
.shape-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -200px; }
.shape-2 { width: 400px; height: 400px; background: #06b6d4; bottom: -200px; left: -100px; }
.shape-3 { width: 200px; height: 200px; background: #34d399; top: 40%; left: 40%; }
.hero-content, .hero-visual { position: relative; z-index: 1; }

/* B2B hero card */
.b2b-hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(10px); box-shadow: 0 0 60px rgba(13,148,136,0.15); }
.bhc-header { padding: 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.08); }
.bhc-search { display: flex; gap: 6px; align-items: stretch; }
.bhc-field { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 8px 10px; font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 600; display: flex; align-items: center; }
.bhc-search-btn { background: var(--accent); color: #fff; border-radius: 6px; padding: 8px 16px; font-size: 12px; font-weight: 700; display: flex; align-items: center; }
.bhc-results { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.bhc-result { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; transition: all 0.2s; }
.bhc-result:hover { background: rgba(255,255,255,0.04); border-color: rgba(94,234,212,0.2); }
.bhc-img { width: 60px; height: 46px; border-radius: 6px; flex-shrink: 0; background: linear-gradient(135deg, #fecaca 0%, #fde68a 50%, #bbf7d0 100%); }
.bhc-img.i2 { background: linear-gradient(135deg, #c7d2fe 0%, #a5f3fc 50%, #bef264 100%); }
.bhc-img.i3 { background: linear-gradient(135deg, #fde68a 0%, #fed7aa 50%, #fecdd3 100%); }
.bhc-info { flex: 1; }
.bhc-name { font-size: 13px; font-weight: 700; color: #fff; }
.bhc-loc { font-size: 10px; color: rgba(255,255,255,0.4); }
.bhc-stars { color: #fbbf24; font-size: 10px; letter-spacing: 1px; }
.star { color: #fbbf24; }
.bhc-price { text-align: right; flex-shrink: 0; }
.bhc-price-label { font-size: 8px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.bhc-price-val { font-size: 18px; font-weight: 800; color: var(--accent-light); }
.bhc-book-btn { margin-top: 3px; padding: 3px 12px; background: var(--accent); color: #fff; border-radius: 4px; font-size: 10px; font-weight: 700; display: inline-block; }
.bhc-footer { padding: 8px 14px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 10px; color: rgba(255,255,255,0.3); text-align: center; }

@media (max-width: 960px) {
  .hero-b2b .container { grid-template-columns: 1fr; }
  .hero-b2b h1 { font-size: 36px; }
  .hero-visual { display: none; }
}

/* Sections */
.section-light { padding: 100px 0; }
.section-gray { padding: 100px 0; background: var(--gray-50); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag { display: inline-block; padding: 4px 12px; background: var(--accent-bg); color: var(--accent); border-radius: 12px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.b2b-tag { background: var(--accent-bg); color: var(--accent); }
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; letter-spacing: -0.01em; }
.section-header p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }

/* Inventory grid */
.inventory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inv-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s; }
.inv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.inv-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.inv-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.inv-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
@media (max-width: 768px) { .inventory-grid { grid-template-columns: 1fr; } }

/* Steps B2B */
.steps-b2b { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.step-b2b { display: flex; gap: 24px; align-items: flex-start; }
.step-b2b-num { width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-b2b-content { flex: 1; }
.step-b2b-content h4 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.step-b2b-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.step-b2b-detail { display: flex; gap: 16px; flex-wrap: wrap; }
.sbd-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-600); font-weight: 500; }
.sbd-check { color: var(--green); font-weight: 700; }

/* Advantages */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s; }
.adv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.adv-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.adv-icon.green { background: var(--green-light); color: var(--green); }
.adv-icon.blue { background: var(--blue-light); color: var(--blue); }
.adv-icon.purple { background: var(--purple-light); color: var(--purple); }
.adv-icon.teal { background: var(--teal-light); color: var(--teal); }
.adv-icon.amber { background: var(--amber-light); color: var(--amber); }
.adv-icon.rose { background: #ffe4e6; color: var(--rose); }
.adv-card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.adv-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
@media (max-width: 768px) { .adv-grid { grid-template-columns: 1fr; } }

/* Agency features */
.agency-features { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.af-main { display: flex; flex-direction: column; gap: 24px; }
.af-feature { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.af-feature h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.af-feature p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.af-stat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.af-stat-title { padding: 16px 20px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 14px; font-weight: 700; color: var(--gray-700); }
.af-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-100); }
.af-stat { background: #fff; padding: 16px 20px; }
.af-stat-label { font-size: 10px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; margin-bottom: 4px; }
.af-stat-val { font-size: 18px; font-weight: 800; }
.af-stat-val.green { color: var(--green); }
.af-stat-val.blue { color: var(--blue); }
.af-stat-val.purple { color: var(--purple); }
.af-stat-val.teal { color: var(--teal); }
.af-recent { padding: 16px 20px; }
.af-recent-title { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; margin-bottom: 10px; }
.af-recent-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--gray-50); font-size: 12px; color: var(--gray-600); }
.af-ref { font-family: monospace; font-size: 11px; color: var(--accent); font-weight: 600; }
.af-status { margin-left: auto; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.af-status.confirmed { background: var(--green-light); color: var(--green); }
.af-status.pending { background: var(--amber-light); color: var(--amber); }
@media (max-width: 768px) { .agency-features { grid-template-columns: 1fr; } }

/* CTA */
.cta-section { padding: 80px 0; text-align: center; }
.cta-b2b { background: linear-gradient(135deg, #042f2e 0%, #064e3b 100%); }
.cta-content h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 32px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.contact-benefits { display: flex; flex-direction: column; gap: 16px; }
.benefit { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-700); font-weight: 500; }
.benefit svg { flex-shrink: 0; }
.contact-form-wrapper { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--gray-800); background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-group { display: flex; gap: 16px; margin-top: 4px; flex-wrap: wrap; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray-600); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 4px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { padding: 60px 0 40px; background: var(--gray-900); color: var(--gray-400); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-brand .logo { color: #fff; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links a { display: block; color: var(--gray-400); text-decoration: none; font-size: 13px; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--gray-700); text-align: center; font-size: 13px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
