/* ============================================ */
/* Tevis TV - Vibrant #00FFFF (Cyan) Theme      */
/* Proper Internal CSS - All styles here        */
/* ============================================ */

:root {
  --bg-light: #F4F9FB;
  --bg-card: #FFFFFF;
  --primary-cyan: #00FFFF;
  --primary-cyan-dark: #00CCCC;
  --accent-cyan-glow: #66FFFF;
  --text-dark: #0A2E3A;
  --text-muted: #3A5A66;
  --border-light: #D4ECF0;
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 25px 35px -12px rgba(0, 255, 255, 0.15);
  --gradient-primary: linear-gradient(145deg, #00FFFF 0%, #00CCCC 100%);
  --section-gap: 5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

.elegant-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 255, 255, 0.15);
  border-top: 4px solid var(--primary-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Animation Classes */
.animate-fadeUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeLeft {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeRight {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.5s ease forwards;
}

.animate-float:hover {
  animation: float 0.5s ease-in-out;
}

.glow-animation {
  animation: glowPulse 2s infinite;
}

/* Stagger children animations */
.stagger-children>* {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.stagger-children>*:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger-children>*:nth-child(2) {
  animation-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
  animation-delay: 0.15s;
}

.stagger-children>*:nth-child(4) {
  animation-delay: 0.2s;
}

.stagger-children>*:nth-child(5) {
  animation-delay: 0.25s;
}

.stagger-children>*:nth-child(6) {
  animation-delay: 0.3s;
}

.stagger-children>*:nth-child(7) {
  animation-delay: 0.35s;
}

.stagger-children>*:nth-child(8) {
  animation-delay: 0.4s;
}

.stagger-children>*:nth-child(9) {
  animation-delay: 0.45s;
}

.stagger-children>*:nth-child(10) {
  animation-delay: 0.5s;
}

.stagger-children>*:nth-child(11) {
  animation-delay: 0.55s;
}

.stagger-children>*:nth-child(12) {
  animation-delay: 0.6s;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.02);
}

.nav-link-elegant {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  font-size: 0.95rem;
  transition: 0.3s;
  position: relative;
}

.nav-link-elegant::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-cyan);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-elegant:hover::after {
  width: 80%;
}

.nav-link-elegant:hover {
  color: var(--primary-cyan-dark) !important;
  text-shadow: 0 0 2px rgba(0, 255, 255, 0.3);
}

.nav-link-elegant.active {
  color: var(--primary-cyan-dark) !important;
  border-bottom: 2px solid var(--primary-cyan);
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  color: #0A2E3A;
  transition: all 0.3s;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 255, 255, 0.4);
  color: #0A2E3A;
}

.btn-outline-cyan {
  background: transparent;
  border: 1.5px solid var(--primary-cyan);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  color: var(--primary-cyan-dark);
  transition: all 0.3s;
  font-size: 0.85rem;
}

.btn-outline-cyan:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: #0A2E3A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero-elegant {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #E6F8FA 100%);
  padding: 3rem 1.5rem;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: scaleIn 1.2s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
  border-radius: 2rem;
  padding: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title-wrapper {
  background: rgba(0, 255, 255, 0.2);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-cyan-dark);
  border: 1px solid rgba(0, 255, 255, 0.4);
  animation: fadeInUp 0.5s ease 0.2s both;
}

.main-title-elegant {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0A2E3A 0%, #00CCCC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease 0.3s both;
}

.title-sub-elegant {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--primary-cyan-dark);
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.hero-desc-elegant {
  color: var(--text-muted);
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1rem;
  animation: fadeInUp 0.5s ease 0.5s both;
}

.hero-content .d-flex {
  animation: fadeInUp 0.5s ease 0.6s both;
}

/* Stats */
.stats-modern {
  background: white;
  border-radius: 70px;
  padding: 1.2rem 2rem;
  border: 1px solid var(--border-light);
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.stats-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -15px rgba(0, 255, 255, 0.2);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 0 1rem;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number-elegant {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-cyan-dark);
  display: block;
  transition: all 0.3s;
}

.stat-card:hover .stat-number-elegant {
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-light);
}

.whatsapp-stat a {
  color: var(--primary-cyan-dark);
  text-decoration: none;
  font-size: 1.2rem;
}

/* Glass Card */
.glass-card-elegant {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.4s;
  box-shadow: var(--shadow-sm);
}

.glass-card-elegant:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(0, 255, 255, 0.2);
  border-color: var(--primary-cyan);
}

/* App Cards */
.app-card-elegant {
  background: white;
  border-radius: 28px;
  padding: 1.5rem 0.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-light);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.app-card-elegant:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-hover);
}

.app-icon-elegant {
  width: 120px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 6px rgba(0, 255, 255, 0.15));
  transition: transform 0.3s;
}

.app-card-elegant:hover .app-icon-elegant {
  transform: scale(1.1) rotate(3deg);
}

.btn-app-elegant {
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  color: var(--text-dark);
  margin: 0.2rem;
  display: inline-block;
  transition: 0.2s;
}

.btn-app-elegant:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: #0A2E3A;
}

/* Pricing Cards */
.pricing-card-professional {
  background: white;
  border-radius: 2rem;
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.pricing-card-professional:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-cyan);
  box-shadow: var(--shadow-hover);
}

.price-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-cyan-dark);
  display: inline;
  transition: all 0.3s;
}

.pricing-card-professional:hover .price-amount {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  display: inline-block;
}

.price-features-elegant {
  list-style: none;
  padding-left: 0;
}

.price-features-elegant li {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
}

.price-features-elegant li i {
  color: var(--primary-cyan);
  width: 20px;
}

/* FAQ */
.faq-item-new {
  background: white;
  margin-bottom: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.faq-item-new:hover {
  transform: translateX(5px);
  border-color: var(--primary-cyan);
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text-dark);
}

.faq-question-new:hover {
  background: rgba(0, 255, 255, 0.06);
  color: var(--primary-cyan-dark);
  padding-left: 1.8rem;
}

.faq-answer-new {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-out;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-item-new.active .faq-answer-new {
  padding: 0 1.5rem 1.2rem 1.5rem;
  max-height: 200px;
}

.faq-item-new.active .fa-chevron-down {
  transform: rotate(180deg);
  color: var(--primary-cyan);
}

/* Footer */
.footer-elegant {
  background: linear-gradient(145deg, #0A2E3A 0%, #0A2E3A 100%);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  border-top: 3px solid var(--primary-cyan);
  position: relative;
  transition: all 0.3s;
}

.footer-heading-elegant {
  color: var(--primary-cyan);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
  font-size: 1.3rem;
  transition: all 0.3s;
}

.footer-heading-elegant:hover {
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.footer-links-elegant {
  list-style: none;
  padding: 0;
}

.footer-links-elegant li a {
  color: #B0D4DF;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  line-height: 2;
  display: inline-block;
}

.footer-links-elegant li a:hover {
  color: var(--primary-cyan);
  transform: translateX(5px);
  text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
}

.footer-copyright {
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding-top: 1.8rem;
  margin-top: 1rem;
}

.footer-copyright p {
  color: #8CB8C6;
  font-size: 1rem;
}

.footer-copyright a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-copyright a:hover {
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* Float Buttons */
.whatsapp-float-elegant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.whatsapp-float-elegant:hover {
  transform: scale(1.08) translateY(-3px);
  background: #128C7E;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--primary-cyan-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2E3A;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
  font-weight: bold;
}

.back-to-top-elegant.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-elegant:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--primary-cyan);
}

/* Section Header */
.section-header-elegant h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-header-elegant h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-cyan);
  border-radius: 3px;
  transition: width 0.3s;
}

.section-header-elegant:hover h2::after {
  width: 100px;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-modern {
    border-radius: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .glass-card-elegant {
    padding: 1.2rem;
  }

  .hero-content {
    padding: 1rem;
  }
}

/* AOS Override */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}