/*
 * Modern Domain Transfer Page Design
 * Brand Colors: #140c3a (Primary Purple), #f9bd06 (Accent Yellow)
 * Modern UI with Icons, Effects and Animations
 */

:root {
  --transfer-primary: #140c3a;
  --transfer-accent: #f9bd06;
  --transfer-light-yellow: #ffd84d;
  --transfer-gradient-primary: linear-gradient(135deg, #140c3a 0%, #1f1254 100%);
  --transfer-gradient-accent: linear-gradient(135deg, #f9bd06 0%, #ffc107 100%);
}

/* Hero Section - Domain Transfer */
.domain-transfer-hero {
  background: linear-gradient(135deg, #140c3a 0%, #1f1254 50%, #2d1b6b 100%);
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 600px;
}

.domain-transfer-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 189, 6, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 20s ease-in-out infinite;
}

.domain-transfer-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 189, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 15s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

/* Hero Content */
.transfer-hero-content {
  position: relative;
  z-index: 2;
}

.transfer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 189, 6, 0.15);
  border: 2px solid rgba(249, 189, 6, 0.3);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 25px;
  animation: badgePulse 2s ease-in-out infinite;
}

.transfer-badge i {
  font-size: 20px;
  color: var(--transfer-accent);
  animation: iconRotate 3s ease-in-out infinite;
}

.transfer-badge span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 189, 6, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(249, 189, 6, 0);
  }
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.transfer-hero-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.transfer-hero-title .highlight {
  background: var(--transfer-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.transfer-hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Transfer Form */
.transfer-form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.transfer-form-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 189, 6, 0.5);
  box-shadow: 0 25px 70px rgba(249, 189, 6, 0.2);
}

.transfer-form-group {
  position: relative;
  margin-bottom: 20px;
}

.transfer-form-label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transfer-form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  color: var(--transfer-primary);
  font-weight: 500;
}

.transfer-form-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--transfer-accent);
  box-shadow: 0 0 0 4px rgba(249, 189, 6, 0.2);
}

.transfer-form-input::placeholder {
  color: #999;
}

.transfer-submit-btn {
  width: 100%;
  background: var(--transfer-gradient-accent);
  color: var(--transfer-primary);
  border: none;
  border-radius: 14px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(249, 189, 6, 0.4);
}

.transfer-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.transfer-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 189, 6, 0.6);
}

.transfer-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.transfer-submit-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.transfer-submit-btn:hover i {
  transform: translateX(5px);
}

/* Transfer Benefits Icons */
.transfer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  animation: benefitFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes benefitFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-item:hover {
  background: rgba(249, 189, 6, 0.15);
  border-color: rgba(249, 189, 6, 0.5);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--transfer-gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(249, 189, 6, 0.5);
}

.benefit-icon i {
  font-size: 28px;
  color: var(--transfer-primary);
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Hero Image */
.transfer-hero-image {
  position: relative;
  z-index: 2;
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.transfer-hero-image img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 991px) {
  .domain-transfer-hero {
    padding: 80px 0 60px;
    min-height: 500px;
  }

  .transfer-hero-title {
    font-size: 42px;
  }

  .transfer-hero-description {
    font-size: 18px;
  }

  .transfer-form-wrapper {
    padding: 30px;
  }

  .transfer-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .domain-transfer-hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .transfer-hero-title {
    font-size: 32px;
  }

  .transfer-hero-description {
    font-size: 16px;
  }

  .transfer-form-wrapper {
    padding: 25px;
    border-radius: 20px;
  }

  .transfer-submit-btn {
    padding: 16px 20px;
    font-size: 16px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon i {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .transfer-hero-title {
    font-size: 28px;
  }

  .transfer-badge {
    padding: 8px 18px;
  }

  .transfer-badge span {
    font-size: 12px;
  }
}
