/* Domain Page Styles */

/* Mega Dropdown Menu */
/* .mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: none;
}

.hosting-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-right: 30px;
  border-right: 1px solid #eee;
}

.hosting-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #333;
}

.hosting-icon {
  color: #666;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.hosting-content h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.hosting-content p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #666;
}

.promo-section {
  text-align: center;
  padding: 0 20px;
}

.promo-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.promo-price {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 10px 0 5px;
}

.promo-price span {
  font-size: 16px;
}

.original-price {
  text-decoration: line-through;
  color: #666;
  font-size: 14px;
}

.discount-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0;
}

.purchase-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #1a2234;
  color: white !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hosting-options {
    grid-template-columns: 1fr;
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
  }
} */


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(
      2px 2px at 160px 30px,
      rgba(255, 255, 255, 0.2),
      transparent
    );
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions .btn {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border: none;
  color: #333;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-domain {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  color: white;
  animation: float 6s ease-in-out infinite;
}

.floating-domain:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-domain:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

.floating-domain:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.floating-domain:nth-child(4) {
  top: 10%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.globe-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.globe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.globe-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: linear-gradient(
      0deg,
      transparent 49%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 51%
    ),
    linear-gradient(
      90deg,
      transparent 49%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 51%
    );
}

.globe-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: radial-gradient(
      2px 2px at 50px 50px,
      rgba(255, 255, 255, 0.4),
      transparent
    ),
    radial-gradient(
      2px 2px at 150px 100px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(
      1px 1px at 200px 150px,
      rgba(255, 255, 255, 0.5),
      transparent
    );
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Domain Search Section */
.domain-search-section {
  background: white;
  position: relative;
}

.search-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 60px;
  padding: 8px;
  margin-bottom: 24px;
}

.search-icon {
  position: absolute;
  left: 24px;
  color: #666;
  z-index: 2;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 24px 16px 56px;
  font-size: 1.1rem;
  border-radius: 60px;
}

.search-input:focus {
  outline: none;
  box-shadow: none;
}

.search-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.popular-extensions {
  text-align: center;
}

.extensions-label {
  color: #666;
  margin-right: 16px;
}

.extension-tags {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.extension-tag {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.extension-tag:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
}

/* Domain Transfer Section */
.domain-transfer-section {
  background: white;
  position: relative;
}

.transfer-benefits {
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateX(8px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h5 {
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.benefit-content p {
  margin: 0;
  color: #666;
}

.transfer-form-container {
  display: flex;
  justify-content: center;
}

.transfer-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.transfer-form h4 {
  margin-bottom: 24px;
  color: #333;
  font-weight: 600;
}

.transfer-form .form-control {
  border-radius: 12px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.transfer-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Bulk Registration Section */
.bulk-registration-section {
  background: white;
  position: relative;
}

.bulk-form-container {
  display: flex;
  justify-content: center;
}

.bulk-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-header p {
  color: #666;
  margin: 0;
}

.bulk-textarea {
  border-radius: 12px;
  border: 2px solid #e9ecef;
  padding: 16px;
  font-family: "Courier New", monospace;
  resize: vertical;
  transition: all 0.3s ease;
}

.bulk-textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.bulk-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.summary-item:last-child {
  margin-bottom: 0;
}

.summary-item.total {
  border-top: 2px solid #e9ecef;
  padding-top: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.summary-item.discount .summary-value {
  color: #28a745;
}

.summary-label {
  color: #666;
}

.summary-value {
  font-weight: 600;
  color: #333;
}

.bulk-features {
  margin-top: 48px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-card h5 {
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 140px 0 80px 0;
    display: flex;
    align-items: center;
  }

  .hero-section .container {
    padding-top: 0;
  }

  .hero-content {
    text-align: center;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-stats {
    gap: 24px;
    justify-content: center;
    margin-top: 2rem;
  }

  .search-container {
    padding: 24px;
  }

  .search-input-group {
    flex-direction: column;
    gap: 16px;
  }

  .search-input {
    padding: 16px 24px;
  }

  .extension-tags {
    gap: 8px;
  }

  .transfer-form,
  .bulk-form {
    padding: 24px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 120px 0 60px 0;
    min-height: auto;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 5px;
  }

  .hero-actions {
    gap: 12px;
  }

  .floating-domain {
    font-size: 12px;
    padding: 6px 12px;
  }

  .globe-container {
    width: 200px;
    height: 200px;
  }
}
