/* ToLetDubai.com - Premium Real Estate Domain Landing Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0a0e1a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Icons */
.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #0a0e1a 100%);
  background-image: 
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&h=1080&fit=crop'),
    linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 58, 0.92) 50%, rgba(10, 14, 26, 0.95) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: #d4af37;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.domain-highlight {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #b8c5d6;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a0e1a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0a0e1a;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(to right, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Why Section */
.why-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #151b2e 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.feature-content {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: #d4af37;
  margin: 0 auto 1.5rem;
  display: block;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.feature-content p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Opportunity Section */
.opportunity-section {
  background: #0a0e1a;
}

.opportunity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 968px) {
  .opportunity-content {
    grid-template-columns: 1fr;
  }
}

.opportunity-text {
  text-align: left;
}

.opportunity-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.opportunity-description {
  font-size: 1.125rem;
  color: #b8c5d6;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.opportunity-highlight {
  font-size: 1.125rem;
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #d4af37;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 0.875rem;
  color: #b8c5d6;
}

.opportunity-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.opportunity-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.opportunity-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.opportunity-image:hover img {
  transform: scale(1.05);
}

/* Showcase Section */
.showcase-section {
  background: linear-gradient(180deg, #151b2e 0%, #0a0e1a 100%);
}

.showcase-card {
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
}

.showcase-content {
  padding: 3rem;
  text-align: center;
}

.domain-display {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 3rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #ffffff;
  font-size: 1.125rem;
}

.showcase-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #d4af37;
}

/* Buyers Section */
.buyers-section {
  background: #0a0e1a;
}

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.buyer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.buyer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.buyer-header {
  text-align: center;
  padding: 2rem 1.5rem;
}

.buyer-icon {
  width: 3rem;
  height: 3rem;
  color: #d4af37;
  margin: 0 auto 1rem;
  display: block;
}

.buyer-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Use Cases Section */
.usecases-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #151b2e 100%);
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.usecase-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  font-size: 1.125rem;
  color: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.usecase-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}

.usecase-item svg {
  color: #d4af37;
  flex-shrink: 0;
}

/* Form Section */
.form-section {
  background: #0a0e1a;
}

.form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
}

.form-content {
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4af37;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  resize: vertical;
}

/* Scarcity Section */
.scarcity-section {
  background: #0a0e1a;
}

.scarcity-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
}

.scarcity-content {
  padding: 3rem;
  text-align: center;
}

.scarcity-icon {
  width: 4rem;
  height: 4rem;
  color: #d4af37;
  margin: 0 auto 1.5rem;
  display: block;
}

.scarcity-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.scarcity-content p {
  font-size: 1.125rem;
  color: #b8c5d6;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.scarcity-highlight {
  color: #d4af37;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #050711 100%);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.footer-email {
  color: #d4af37;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #f4d03f;
  text-decoration: underline;
}

.footer-text {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
}

.footer-subtext {
  color: #7a8a9e;
  font-size: 0.875rem;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease;
}

.toast.success {
  border-color: #4ade80;
}

.toast.error {
  border-color: #f87171;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast.removing {
  animation: slideOut 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  #toast-container {
    right: 1rem;
    left: 1rem;
  }
  
  .toast {
    min-width: auto;
  }
}
