/* ============================================
   Clean DM - Landing Page Styles
   ============================================ */

/* CSS Variables */
:root {
  --background: #0a0b14;
  --foreground: #f9fafb;
  --card: #12131f;
  --card-foreground: #f9fafb;
  --primary: #00d4ff;
  --primary-foreground: #0a0b14;
  --secondary: #1a1b2e;
  --secondary-foreground: #f9fafb;
  --muted: #23243a;
  --muted-foreground: #9ca3af;
  --border: #2a2b45;
  --input: #1a1b2e;
  --radius: 1rem;
  --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5);
  --glass-bg: rgba(18, 19, 31, 0.8);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-primary {
  color: var(--primary);
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-300 {
  --delay: 300ms;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(10, 11, 20, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
  transition: box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: var(--neon-glow);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.9);
  box-shadow: var(--neon-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: rgba(10, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .nav-cta {
  margin-top: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--background);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15), transparent 60%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 212, 255, 0.1);
}

.hero-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 212, 255, 0.05);
  animation-delay: 1s;
}

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

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  width: fit-content;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.underline-effect {
  position: relative;
}

.underline-effect::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), transparent);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: rgba(0, 212, 255, 0.9);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--foreground);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
}

.btn-whatsapp {
  background: #22c55e;
  color: white;
  padding: 0.625rem 1.25rem;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.btn-large {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon-left {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.btn-outline .btn-icon-left {
  color: var(--primary);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Floating Card */
.hero-right {
  position: relative;
}

.floating-card {
  position: relative;
  background: rgba(18, 19, 31, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.floating-card-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 27, 46, 0.5);
  border: 1px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.service-item:hover .service-icon {
  background: rgba(0, 212, 255, 0.3);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-name {
  font-weight: 500;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.card-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.card-glow-1 {
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(0, 212, 255, 0.2);
}

.card-glow-2 {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(0, 212, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(156, 163, 175, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--primary);
  border-radius: 9999px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   Section Styles (shared)
   ============================================ */
section {
  position: relative;
  padding: 6rem 0;
}

.section-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.05), transparent);
  pointer-events: none;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  background: rgba(18, 19, 31, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(18, 19, 31, 0.8);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: rgba(0, 212, 255, 0.3);
  transform: scale(1.1);
}

.service-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.service-card-title {
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
  color: var(--primary);
}

.service-card-desc {
  position: relative;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.service-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), rgba(0, 212, 255, 0.5));
  border-radius: 0 0 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-line {
  opacity: 1;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.feature-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.3), var(--secondary), var(--card));
}

.gallery-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(0, 200, 255, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 200, 255, 0.1) 50%,
    rgba(0, 200, 255, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 20px 20px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(10, 11, 20, 0.5), transparent);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 0.8;
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.gallery-zoom svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
  background: rgba(0, 212, 255, 0.9);
  padding: 1rem;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom svg {
  transform: scale(1);
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  transition: border-color 0.3s ease;
}

.gallery-item:hover::after {
  border-color: rgba(0, 212, 255, 0.5);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background: rgba(18, 19, 31, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.testimonial-quote svg {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(0, 212, 255, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}

.testimonial-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-card {
  position: relative;
  background: rgba(18, 19, 31, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card.whatsapp::before {
  background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.1), transparent);
}

.contact-card.phone::before {
  background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.1), transparent);
}

.contact-card.instagram::before {
  background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.1), transparent);
}

.contact-card.web::before {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent);
}

.contact-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-card-label {
  position: relative;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-value {
  color: var(--primary);
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(to right, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1rem;
}

.whatsapp-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #22c55e;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-cta-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.whatsapp-cta-text {
  flex: 1;
  min-width: 200px;
}

.whatsapp-cta-title {
  font-weight: 600;
}

.whatsapp-cta-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-card {
  background: rgba(18, 19, 31, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-group input,
.form-group textarea {
  background: rgba(26, 27, 46, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  resize: none;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05), rgba(0, 212, 255, 0.1));
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-orb-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 212, 255, 0.2);
}

.cta-orb-2 {
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 212, 255, 0.1);
}

.final-cta-content {
  position: relative;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .final-cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 3.75rem;
  }
}

.final-cta-desc {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: rgba(18, 19, 31, 0.5);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(0, 212, 255, 0.2);
  color: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #16a34a;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
