﻿/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Color Palette */
  --pr-color: #4F46E5;
  --pr-hover: #4338CA;
  --sec-color: #06B6D4;
  --bg-color: #0F172A;
  --surface-color: rgba(30, 41, 59, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadow & Blur */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(12px);
  --glow: 0 0 20px rgba(79, 70, 229, 0.5);

  /* Transitions */
  --trans-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --pr-color: #4F46E5;
  --pr-hover: #4338CA;
  --sec-color: #0891b2;
  --bg-color: #f8fafc;
  --surface-color: rgba(255, 255, 255, 0.8);
  --border-color: rgba(15, 23, 42, 0.1);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --glow: 0 0 20px rgba(79, 70, 229, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Effects */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 15% 50%, rgba(79, 70, 229, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.15), transparent 25%);
}

.bg-blobs::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  z-index: -1;
  animation: bgScroll 60s linear infinite;
}

@keyframes bgScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(50px);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--trans-smooth);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--trans-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pr-color), var(--sec-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.search-icon:hover,
.social-hover:hover {
  color: var(--pr-color) !important;
  transform: translateY(-2px);
}

#theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--trans-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

#theme-toggle:hover {
  color: var(--pr-color);
  background: var(--surface-color);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pr-color);
  transition: var(--trans-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--surface-color);
  min-width: 220px;
  box-shadow: var(--glass-shadow);
  z-index: 1001;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  top: 100%;
  left: 0;
  overflow: hidden;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: var(--text-primary);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: var(--trans-smooth);
}

.dropdown-content a::after {
  display: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--sec-color);
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeUp 0.3s ease-out forwards;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-left: 1.5rem;
    min-width: 100%;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 8px 16px;
  }
}

.nav-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--trans-smooth);
  border: none;
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--pr-color);
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: var(--pr-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  border-color: var(--pr-color);
  background: rgba(79, 70, 229, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
}

.hero-content {
  text-align: left;
  max-width: 800px;
  margin: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 999px;
  color: var(--sec-color);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--sec-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

/* Cards (Glassmorphism) */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.glass-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.glass-card>div[style*="background: url"] {
  transition: transform 0.6s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.2);
}

.glass-card:hover>div[style*="background: url"] {
  transform: scale(1.05);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--sec-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--trans-smooth);
}

.glass-card:hover .icon-box {
  background: var(--pr-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.service-link i {
  transition: var(--trans-smooth);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Stats */
.stats-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
  margin: 4rem 0;
}

.stat-item h3 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--pr-color), var(--sec-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: var(--trans-smooth);
}

.social-icon:hover {
  background: var(--pr-color);
  border-color: var(--pr-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--sec-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* Page Header (for inner pages) */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  margin-bottom: 1rem;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  transition: var(--trans-smooth);
}

.form-control:focus,
.form-control:hover {
  outline: none;
  border-color: var(--pr-color);
  background: rgba(30, 41, 59, 0.8);
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

/* Pricing Tables */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--pr-color);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.1) 0%, rgba(30, 41, 59, 0.6) 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--pr-color);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--sec-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--sec-color);
}

/* Responsive */

/* Utility Classes Extracted from Inline Styles */
.align-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-sec {
  color: var(--sec-color);
}

.text-red {
  color: #ef4444;
}

.text-green {
  color: #10b981;
}

.text-center {
  text-align: center;
}

/* Specific Component Styles */

/* Navigation Extras */
.nav-extras {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 2rem;
}

.search-icon {
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: var(--trans-smooth);
}

.header-socials {
  display: flex;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.2rem;
}

.header-socials .yt-icon {
  color: #ff0000;
}

.header-socials .default-icon {
  color: var(--text-secondary);
}

/* Sections */
.section-dark {
  background: rgba(15, 23, 42, 0.4);
}

/* Card Highlights */
.card-highlight {
  border-color: var(--pr-color);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.1);
}

/* CTA Card */
.cta-card {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
}

.cta-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Testimonial Authors */
.stars-container {
  color: #FBBF24;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.bg-primary {
  background: var(--pr-color);
}

.bg-secondary {
  background: var(--sec-color);
}

.bg-red {
  background: #ef4444;
}

.bg-green {
  background: #10b981;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--sec-color);
  font-size: 0.8rem;
}

/* Footer Extras */
.footer-newsletter {
  flex: 1;
  min-width: 250px;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-input {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.newsletter-btn {
  padding: 0.8rem;
  border-radius: 6px;
}

.footer-icon {
  margin-right: 8px;
  color: var(--sec-color);
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.popular {
    transform: scale(1);
    z-index: 1;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px) scale(1);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
  }

  .stat-item {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .nav-extras {
    display: none !important;
  }

  .nav-btn {
    display: block;
    font-size: 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: var(--trans-smooth);
    border-left: 1px solid var(--border-color);
  }

  .nav-links.active {
    right: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero {
    text-align: center;
    padding-top: 8rem;
  }

  .hero-content {
    margin: 0 auto;
  }

  .stat-item {
    width: 100%;
  }
}

/* Testimonial Carousel */
.testimonial-slider {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 350px;
  padding: 2rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--pr-color);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--surface-color);
  color: var(--text-primary);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--border-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on smaller screens for better UX */
  }
}
/* Process Card Hover Effects */
.process-card:hover .process-content {
    opacity: 0.1;
    transform: scale(0.95);
}
.process-card:hover .process-hover-btn {
    opacity: 1 !important;
}

/* 4-column Grid */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Stats Counter Styles */
.stat-icon {
  font-size: 2.5rem;
  color: var(--sec-color);
  margin-bottom: 1rem;
}
.stat-item h3.counter {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--pr-color), var(--sec-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Search Modal --- */
.glass-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.glass-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-modal:hover {
    color: white;
}
.search-header h2 {
    margin-bottom: 1.5rem;
}
.search-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}
.search-icon-inner {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}
#site-search-input {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: white;
    font-size: 1.2rem;
    font-family: var(--font-body);
}
#site-search-input:focus {
    outline: none;
    border-color: var(--pr-color);
    background: rgba(0, 0, 0, 0.4);
}
.search-results-container {
    max-height: 50vh;
    overflow-y: auto;
}
.search-result-item:hover {
    border-color: var(--pr-color);
    transform: translateY(-2px);
}
.search-result-none {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
}

/* --- FAQ Accordion --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}
.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--pr-color);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.1);
}
.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.6s ease-in-out;
}
.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Advantage Section --- */
.advantage-card {
    padding-top: 3rem;
}
.active-advantage {
    border-color: var(--pr-color);
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.1) 0%, rgba(30, 41, 59, 0.6) 100%);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.1);
}
