/* Domains Page Specific Styles */

.page-header {
  background: linear-gradient(135deg, #00294C 0%, #01366C 100%);
  position: relative;
  overflow: hidden;
}

.page-hero {
  padding: 150px 0 100px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 181, 6, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title .colorized {
  color: #FFB506;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 181, 6, 0.3));
}

/* Domain Search Box */
.domain-search-box {
  margin: 30px 0;
}

.search-form .input-group {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
}

.search-form .form-control {
  border: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  background: white;
}

.search-form .form-control:focus {
  box-shadow: none;
  outline: none;
}

.btn-search {
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background: linear-gradient(135deg, #FFC940 0%, #FFB506 100%);
  transform: scale(1.05);
}

.popular-tlds {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tld-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.tld-badge:hover {
  background: #FFB506;
  border-color: #FFB506;
  transform: translateY(-3px);
  cursor: pointer;
}

/* TLD Section */
.tld-section {
  padding: 80px 0;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.section-title {
  font-size: 2.5rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.tld-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-align: center;
}

.tld-card:hover {
  border-color: #FFB506;
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 41, 76, 0.1);
}

.tld-card.featured {
  border-color: #FFB506;
  box-shadow: 0 10px 40px rgba(255, 181, 6, 0.2);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tld-extension {
  font-size: 2rem;
  font-weight: 700;
  color: #01366C;
  margin-bottom: 10px;
}

.tld-desc {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.tld-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.tld-features li {
  padding: 8px 0;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tld-features i {
  color: #FFB506;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tld-button {
  display: block;
  background-color: #FFB506;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.tld-button:hover {
  background-color: #01366C;
  color: white;
  transform: scale(1.05);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: white;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: #FFB506;
  box-shadow: 0 10px 40px rgba(0, 41, 76, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Transfer Section */
.transfer-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.transfer-card {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.transfer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFB506 0%, #FFC940 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.transfer-card:hover::before {
  transform: scaleX(1);
}

.transfer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 41, 76, 0.15);
}

.transfer-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
}

.transfer-card h3 {
  font-size: 1.3rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.transfer-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.transfer-benefits {
  margin-top: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.08);
}

.transfer-benefits h3 {
  font-size: 1.8rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: linear-gradient(135deg, rgba(255, 181, 6, 0.1) 0%, rgba(255, 201, 64, 0.1) 100%);
  transform: translateX(10px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #FFB506;
  flex-shrink: 0;
}

.benefit-item span {
  color: #01366C;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-button-large {
  display: inline-block;
  background-color: #FFB506;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 6, 0.3);
  white-space: nowrap;
}

.cta-button-large:hover {
  background-color: white;
  color: #01366C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 6, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .popular-tlds {
    justify-content: center;
  }

  .btn-search {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .search-form .form-control {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .tld-card {
    margin-bottom: 30px;
  }

  .transfer-benefits {
    padding: 25px 20px;
  }

  .benefit-item {
    margin-bottom: 10px;
  }
}
