/* TELEPHONY PAGE - MODERN STYLES */
:root {
  --tel-primary: #f68732;
  --tel-primary-hover: #f68732;
  --tel-secondary: #3b82f6;
  --tel-dark-bg: #0f1419;
  --tel-dark-card: #1a1f2e;
  --tel-text-primary: #ffffff;
  --tel-text-secondary: #cbd5e1;
  --tel-text-muted: #94a3b8;
  --tel-border: #334155;
}

/* Hero Section */
.tel-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
}

.tel-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 107, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    );
}

.signal-waves {
  position: absolute;
  inset: 0;
}

.signal-waves .wave {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-wave 3s ease-out infinite;
}

.signal-waves .wave:nth-child(2) {
  animation-delay: 1s;
}
.signal-waves .wave:nth-child(3) {
  animation-delay: 2s;
}

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

.tel-hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
}

.tel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 50px;
  color: var(--tel-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out;
}

.tel-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tel-text-primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--tel-primary) 0%,
    var(--tel-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tel-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--tel-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.tel-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.tel-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tel-btn.primary {
  background: var(--tel-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.tel-btn.primary:hover {
  background: var(--tel-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.4);
}

.tel-btn.secondary {
  background: transparent;
  color: var(--tel-text-primary);
  border: 2px solid var(--tel-border);
}

.tel-btn.secondary:hover {
  border-color: var(--tel-primary);
  color: var(--tel-primary);
  transform: translateY(-2px);
}

.tel-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tel-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--tel-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tel-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.phone-icon {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.signal-lines {
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.call-waves {
  position: absolute;
  inset: 0;
}

.call-wave {
  position: absolute;
  inset: -50%;
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 50%;
  animation: expand-wave 3s ease-out infinite;
}

.call-wave:nth-child(2) {
  animation-delay: 1s;
}
.call-wave:nth-child(3) {
  animation-delay: 2s;
}

@keyframes expand-wave {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

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

/* Sections */
.tel-features,
.tel-benefits,
.tel-packages,
.tel-form-section {
  padding: 6rem 0;
}

.tel-features {
  background: var(--tel-dark-bg);
}
.tel-benefits {
  background: linear-gradient(
    180deg,
    var(--tel-dark-bg) 0%,
    var(--tel-dark-card) 100%
  );
}
.tel-packages {
  background: var(--tel-dark-bg);
}
.tel-form-section {
  background: linear-gradient(
    180deg,
    var(--tel-dark-bg) 0%,
    var(--tel-dark-card) 100%
  );
}

.tel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tel-container-small {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--tel-text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--tel-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--tel-dark-card);
  border: 1px solid var(--tel-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--tel-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.feature-icon.orange {
  background: linear-gradient(135deg, #f68732 0%, #f68732 100%);
}
.feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}
.feature-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}
.feature-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}
.feature-icon.red {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}
.feature-icon.teal {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tel-text-primary);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--tel-text-secondary);
  line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--tel-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-item[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--tel-primary) 0%,
    var(--tel-secondary) 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}
.benefit-item:hover {
  transform: translateY(-8px);
  border-color: var(--tel-primary);
  background: rgba(255, 107, 0, 0.05);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  color:#f68732;
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tel-text-primary);
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--tel-text-secondary);
  line-height: 1.7;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  background: var(--tel-dark-card);
  border: 2px solid var(--tel-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.package-card[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--tel-primary);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.package-card.featured {
  border-color: var(--tel-primary);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.05) 0%,
    rgba(59, 130, 246, 0.05) 100%
  );
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--tel-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--tel-border);
  margin-bottom: 2rem;
}

.package-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tel-text-primary);
  margin-bottom: 1rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.package-price .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--tel-primary);
}

.package-price .period {
  font-size: 1rem;
  color: var(--tel-text-muted);
}

.package-features {
  margin-bottom: 2rem;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--tel-text-secondary);
}

.package-feature svg {
  flex-shrink: 0;
  color: var(--tel-primary);
}

.package-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--tel-border);
  background: transparent;
  color: var(--tel-text-primary);
}

.package-btn:hover {
  border-color: var(--tel-primary);
  color: var(--tel-primary);
  transform: translateY(-2px);
}

.package-btn.primary {
  background: var(--tel-primary);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.package-btn.primary:hover {
  background: var(--tel-primary-hover);
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.4);
}

.package-note {
  background: var(--tel-dark-card);
  border: 1px solid var(--tel-border);
  border-left: 4px solid var(--tel-primary);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.package-note p {
  color: var(--tel-text-secondary);
  margin: 0;
}

/* Form Section */
.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--tel-text-primary);
  margin-bottom: 1rem;
}

.form-subtitle {
  font-size: 1.125rem;
  color: var(--tel-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tel-form {
  background: var(--tel-dark-card);
  border: 1px solid var(--tel-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--tel-text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--tel-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--tel-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tel-primary);
  background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
}

.form-group.error .form-error {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  color: var(--tel-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--tel-primary);
  text-decoration: none;
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--tel-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.form-submit:hover:not(:disabled) {
  background: var(--tel-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.4);
}

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

.btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .tel-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .tel-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tel-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .tel-hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .tel-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .tel-hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .tel-hero-container {
    padding: 2rem 1rem;
  }

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

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

  .tel-hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .tel-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .tel-form {
    padding: 2rem 1.5rem;
  }

  .tel-features,
  .tel-benefits,
  .tel-packages,
  .tel-form-section {
    padding: 4rem 0;
  }

  .phone-icon {
    width: 200px;
    height: 200px;
  }
}

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

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

/* Utility */
.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}
