/* ==========================================================================
   SINGLE SCREEN (100VH) DOMAIN FOR SALE LANDING PAGE
   No Scroll, Perfect Viewport Fit, Light Theme (White, Crimson Red, Navy Blue & Royal Blue)
   ========================================================================== */

:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-solid: #ffffff;
  --bg-input: #f8fafc;
  --bg-input-focus: #ffffff;
  
  --navy-primary: #002147;
  --navy-secondary: #0f2c59;
  
  --red-primary: #ed1c24;
  --red-hover: #c81018;
  --red-glow: rgba(237, 28, 36, 0.25);
  
  --blue-accent: #2563eb;
  --blue-accent-hover: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-border: rgba(37, 99, 235, 0.3);
  --blue-glow: rgba(37, 99, 235, 0.15);
  
  --primary-accent: #ed1c24;
  --primary-accent-hover: #c81018;
  
  --text-main: #002147;
  --text-body: #334155;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-color: #e2e8f0;
  --border-card: rgba(0, 33, 71, 0.12);
  --border-accent: rgba(237, 28, 36, 0.3);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-card: 0 20px 45px -15px rgba(0, 33, 71, 0.12), 0 0 25px rgba(37, 99, 235, 0.06);
  --shadow-sm: 0 4px 12px rgba(0, 33, 71, 0.06);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Prevent Scrolling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
}

/* Light Background Map Canvas / SVG Background */
.bg-world-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 33, 71, 0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.7;
}

.bg-map-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 80% 20%, rgba(237, 28, 36, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cpath fill='%23002147' fill-opacity='0.03' d='M150 120 Q 220 70, 280 120 T 380 120 Q 450 170, 520 140 T 620 160 T 750 120 M 120 250 Q 200 230, 250 290 T 350 270 Q 480 340, 560 250 T 720 310'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Layout Wrapper - Full Viewport */
.site-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 3rem 1.25rem 3rem;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Top Header & Logo */
.site-header {
  width: 100%;
  padding-bottom: 0.5rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo-link {
  display: inline-block;
  text-decoration: none;
}

.brand-logo {
  height: 105px;
  max-height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 33, 71, 0.15));
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.04);
}

/* Main Hero Grid */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: auto;
}

/* Left Content Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy-primary);
  letter-spacing: -1.5px;
}

.main-title .dot {
  color: var(--primary-accent);
}

.domain-availability {
  font-size: 1.35rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.4;
}

.domain-highlight {
  color: var(--primary-accent);
  font-weight: 700;
}

/* Price Box */
.price-display-box {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 0.95;
  letter-spacing: -2px;
  display: flex;
  align-items: baseline;
}

.price-symbol {
  font-size: 4.25rem;
  margin-right: 0.15rem;
  color: var(--primary-accent);
}

.price-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Floating Left Side Tab (+ MORE DOMAINS) */
.side-drawer-toggle {
  position: fixed;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background: var(--navy-primary);
  border: 1px solid var(--navy-primary);
  border-left: 4px solid var(--blue-accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 0.6rem;
  color: #ffffff;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 90;
  box-shadow: 4px 0 15px rgba(0, 33, 71, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.side-drawer-toggle:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  color: #ffffff;
  padding-left: 0.8rem;
}

.side-drawer-toggle span {
  transform: rotate(180deg);
}

/* Side Drawer Sliding Panel */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 33, 71, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid var(--border-color);
  z-index: 999;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 35px rgba(0, 33, 71, 0.15);
}

.side-drawer.open {
  transform: translateX(420px);
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-primary);
  color: #ffffff;
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-close-drawer {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-close-drawer:hover {
  background: var(--primary-accent);
  color: #ffffff;
}

.drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-item {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.portfolio-info p {
  font-size: 0.8rem;
  color: var(--blue-accent);
  font-weight: 600;
}

.btn-inquire-sm {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-accent);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-inquire-sm:hover {
  background: var(--blue-accent);
  color: #ffffff;
}

/* Right Offer Form Card */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.offer-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-card);
}

.card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-primary);
}

.domain-tag {
  display: inline-block;
  margin-top: 0.35rem;
  background: var(--blue-light);
  color: var(--blue-accent);
  border: 1px solid var(--blue-border);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 1.25px;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Form Bid Price Badge */
.form-bid-info {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--blue-accent);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.bid-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bid-amount {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-accent);
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Styling */
.offer-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--navy-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--blue-accent);
  background-color: var(--bg-input-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

/* Offer Amount Input Group */
.offer-input-group {
  display: flex;
  align-items: stretch;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.offer-input-group:focus-within {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  background-color: #ffffff;
}

.currency-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: var(--blue-light);
  border-right: 1px solid var(--border-color);
  color: var(--blue-accent);
  font-weight: 700;
  font-size: 1rem;
}

.offer-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1rem;
  color: var(--navy-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
}

.currency-select-wrapper {
  border-left: 1px solid var(--border-color);
  background: var(--blue-light);
}

.currency-select {
  height: 100%;
  background: transparent;
  border: none;
  color: var(--navy-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 0.85rem;
  outline: none;
  cursor: pointer;
}

.currency-select option {
  background-color: #ffffff;
  color: var(--navy-primary);
}

/* Captcha Checkbox Container */
.captcha-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  user-select: none;
}

.captcha-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--navy-primary);
  font-weight: 500;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: #ffffff;
}

.captcha-checkbox-label input {
  display: none;
}

.captcha-checkbox-label input:checked + .custom-checkbox {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
}

.captcha-checkbox-label input:checked + .custom-checkbox::after {
  content: '✓';
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
}

.captcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.captcha-badge svg {
  color: var(--blue-accent);
  width: 18px;
  height: 18px;
}

/* Red Submit Button */
.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--primary-accent);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.btn-submit:hover {
  background: var(--primary-accent-hover);
  box-shadow: 0 12px 25px rgba(237, 28, 36, 0.45);
}

.form-footnote {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* Footer Section Bar */
.site-footer {
  width: 100%;
  padding-top: 0.75rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-primary);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #ffffff;
  border: 1px solid var(--primary-accent);
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  color: var(--navy-primary);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 28px;
  height: 28px;
  background: rgba(237, 28, 36, 0.15);
  color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Adjustments */
@media (max-height: 750px) {
  .site-wrapper {
    padding: 1rem 2rem 0.75rem 2rem;
  }
  .brand-logo {
    height: 75px;
  }
  .main-title {
    font-size: 3.5rem;
  }
  .price-amount {
    font-size: 4.5rem;
  }
  .offer-card {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  html, body {
    overflow-y: auto;
    height: auto;
  }
  .site-wrapper {
    height: auto;
    min-height: 100vh;
    padding: 1.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-left {
    text-align: center;
    align-items: center;
  }
  .hero-right {
    justify-content: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
