/* ==========================================
   EMAIL HOSTING PAGE - MODERN DARK FIBER STYLE
   ========================================== */

/* Hero Section */
.emailhosting-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Animated Background Particles */
.emailhosting-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.email-particle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.3), transparent);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: var(--y, 50%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

/* Hero Inner */
.emailhosting-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.emailhosting-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-radius: 50px;
  color: #f68732;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.emailhosting-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #f68732 0%, #f68732 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.emailhosting-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Hero Stats */
.emailhosting-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #f68732;
  font-family: "Orbitron", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Hero Actions */
.emailhosting-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-hero.primary {
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
}

.btn-hero.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.6);
}

.btn-hero.ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.btn-hero.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Email Visualization */
.emailhosting-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

.email-visualization {
  position: relative;
  width: 400px;
  height: 400px;
}

.email-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 152, 0, 0.3) 0%,
    rgba(255, 152, 0, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.email-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 3px solid #f68732;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 150px;
    height: 150px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.email-icons {
  position: absolute;
  inset: 0;
}

.email-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  animation: orbit 8s linear infinite;
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateX(140px);
}

@keyframes orbit {
  from {
    transform: rotate(var(--angle)) translateX(140px)
      rotate(calc(-1 * var(--angle)));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(140px)
      rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}

/* Package Grid Enhanced */
.package-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.package-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card-modern.featured {
  border-color: #f68732;
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
  transform: scale(1.05);
}

.package-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.package-card-modern.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.package-badge-modern {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f3f4f6;
}

.package-name {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 0.5rem;
}

.package-storage {
  font-size: 1rem;
  color: #f68732;
  font-weight: 600;
}

.package-price-modern {
  text-align: center;
  margin-bottom: 2rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: "Orbitron", sans-serif;
}

.price-currency {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 600;
  margin-left: 0.25rem;
}

.price-period {
  display: block;
  font-size: 1rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.package-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.package-features-modern li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #4b5563;
  font-size: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.package-features-modern li:last-child {
  border-bottom: none;
}

.package-features-modern svg {
  color: #f68732;
  flex-shrink: 0;
}

.package-btn-modern {
  width: 100%;
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #1a1a1a;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-btn-modern:hover {
  background: #f9fafb;
  border-color: #f68732;
  transform: translateY(-2px);
}

.package-btn-modern.primary {
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.package-btn-modern.primary:hover {
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.pricing-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 5rem 2rem;
}

.pricing-section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: "Orbitron", sans-serif;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Table Wrapper */
.pricing-table-wrapper {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  margin-bottom: 3rem;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 800px;
}

.pricing-table thead {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.pricing-table th {
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
  font-weight: 700;
  vertical-align: top;
}

.pricing-table th:first-child {
  text-align: left;
  border-radius: 16px 0 0 0;
}

.pricing-table th:last-child {
  border-radius: 0 16px 0 0;
}

.feature-col {
  width: 30%;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-col {
  width: 23.33%;
  position: relative;
}

.featured-col {
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.1),
    rgba(255, 193, 7, 0.1)
  ) !important;
  border-left: 2px solid rgba(255, 152, 0, 0.3);
  border-right: 2px solid rgba(255, 152, 0, 0.3);
}

/* Table Package Headers */
.table-package-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.table-featured-badge {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.table-package-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  font-family: "Orbitron", sans-serif;
}

.table-package-price {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Table Body */
.pricing-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 152, 0, 0.02);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
}

.pricing-table td:first-child {
  text-align: left;
}

.feature-name {
  font-weight: 600;
  color: #1a1a1a;
}

/* Icons */
.check-icon {
  color: #10b981;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.cross-icon {
  color: #ef4444;
  font-weight: 900;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.highlight-value {
  color: #f68732;
  font-weight: 700;
}

/* Pricing Notes */
.pricing-notes {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f4f6;
}

.pricing-notes-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.notes-icon {
  font-size: 2rem;
}

.pricing-notes-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "Orbitron", sans-serif;
}

.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pricing-note-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 12px;
  border-left: 4px solid #f68732;
}

.pricing-note-item strong {
  color: #f68732;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-note-item span {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Form */
.contact-container {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: "Orbitron", sans-serif;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f68732;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  margin-top: 1rem;
}

.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .emailhosting-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .emailhosting-hero-title {
    font-size: 2.5rem;
  }

  .emailhosting-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .package-card-modern.featured {
    transform: scale(1);
  }

  .package-card-modern.featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .pricing-notes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .emailhosting-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .emailhosting-hero-title {
    font-size: 2rem;
  }

  .emailhosting-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .emailhosting-hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .email-visualization {
    width: 300px;
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 2rem 1.5rem;
  }

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

  .pricing-section {
    padding: 3rem 1.5rem;
  }

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

  .pricing-table-wrapper {
    padding: 1rem;
    border-radius: 16px;
  }

  .pricing-table {
    font-size: 0.875rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem 0.75rem;
  }

  .table-package-name {
    font-size: 1.25rem;
  }

  .table-package-price {
    font-size: 0.75rem;
  }

  .table-featured-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.75rem;
    top: -2rem;
  }

  .pricing-notes {
    padding: 1.5rem;
  }

  .pricing-notes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-note-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .emailhosting-hero-title {
    font-size: 1.75rem;
  }

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

  .package-name {
    font-size: 1.75rem;
  }

  .price-value {
    font-size: 2.5rem;
  }
  .pricing-title {
    font-size: 1.75rem;
  }

  .pricing-table-wrapper {
    padding: 0.5rem;
    margin: 0 -1rem;
    border-radius: 0;
  }

  .pricing-table {
    font-size: 0.75rem;
    min-width: 600px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
  }

  .feature-name {
    font-size: 0.875rem;
  }

  .check-icon,
  .cross-icon {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Logo Fallback */
.logo-fallback {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
CSSEOF
cat /mnt/user-data/outputs/email-hosting-modern.css
Output

/* ==========================================
   EMAIL HOSTING PAGE - MODERN DARK FIBER STYLE
   ========================================== */

/* Hero Section */
.emailhosting-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Animated Background Particles */
.emailhosting-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.email-particle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.3), transparent);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  top: var(--y, 50%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

/* Hero Inner */
.emailhosting-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Content */
.emailhosting-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  border-radius: 50px;
  color: #f68732;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.emailhosting-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Orbitron", sans-serif;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #f68732 0%, #f68732 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.emailhosting-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Hero Stats */
.emailhosting-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #f68732;
  font-family: "Orbitron", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Hero Actions */
.emailhosting-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-hero.primary {
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
}

.btn-hero.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.6);
}

.btn-hero.ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.btn-hero.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Email Visualization */
.emailhosting-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out;
}

.email-visualization {
  position: relative;
  width: 400px;
  height: 400px;
}

.email-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 152, 0, 0.3) 0%,
    rgba(255, 152, 0, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.email-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 3px solid #f68732;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    width: 150px;
    height: 150px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.email-icons {
  position: absolute;
  inset: 0;
}

.email-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  animation: orbit 8s linear infinite;
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateX(140px);
}

@keyframes orbit {
  from {
    transform: rotate(var(--angle)) translateX(140px)
      rotate(calc(-1 * var(--angle)));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(140px)
      rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}

/* Package Grid Enhanced */
.package-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.package-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card-modern.featured {
  border-color: #f68732;
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
  transform: scale(1.05);
}

.package-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.package-card-modern.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.package-badge-modern {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f3f4f6;
}

.package-name {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 0.5rem;
}

.package-storage {
  font-size: 1rem;
  color: #f68732;
  font-weight: 600;
}

.package-price-modern {
  text-align: center;
  margin-bottom: 2rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: "Orbitron", sans-serif;
}

.price-currency {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 600;
  margin-left: 0.25rem;
}

.price-period {
  display: block;
  font-size: 1rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.package-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.package-features-modern li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #4b5563;
  font-size: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.package-features-modern li:last-child {
  border-bottom: none;
}

.package-features-modern svg {
  color: #f68732;
  flex-shrink: 0;
}

.package-btn-modern {
  width: 100%;
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  background: white;
  color: #1a1a1a;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-btn-modern:hover {
  background: #f9fafb;
  border-color: #f68732;
  transform: translateY(-2px);
}

.package-btn-modern.primary {
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.package-btn-modern.primary:hover {
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

/* Enhanced Form */
.contact-container {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: "Orbitron", sans-serif;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f68732;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #f68732, #f68732);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  margin-top: 1rem;
}

.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .emailhosting-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .emailhosting-hero-title {
    font-size: 2.5rem;
  }

  .emailhosting-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .package-card-modern.featured {
    transform: scale(1);
  }

  .package-card-modern.featured:hover {
    transform: translateY(-8px) scale(1);
  }
}

@media (max-width: 768px) {
  .emailhosting-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .emailhosting-hero-title {
    font-size: 2rem;
  }

  .emailhosting-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .emailhosting-hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .email-visualization {
    width: 300px;
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 2rem 1.5rem;
  }

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

@media (max-width: 480px) {
  .emailhosting-hero-title {
    font-size: 1.75rem;
  }

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

  .package-name {
    font-size: 1.75rem;
  }

  .price-value {
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Logo Fallback */
.logo-fallback {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
