/* ===========================
   SHREEJI AC SERVICE - CSS
   Colors: #333c81 (Primary) | #39D0E8 (Accent)
=========================== */

/* ---- ROOT VARIABLES ---- */
:root {
  --primary: #333c81;
  --primary-dark: #252d6b;
  --primary-light: #4a54a0;
  --accent: #39D0E8;
  --accent-light: #6adff0;
  --accent-dark: #28b5c9;
  --bg-dark: #0a0e27;
  --bg-darker: #060918;
  --glass-bg: rgba(51, 60, 129, 0.12);
  --glass-border: rgba(57, 208, 232, 0.2);
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.5);
  --shadow-primary: 0 8px 32px rgba(51, 60, 129, 0.5);
  --shadow-accent: 0 8px 32px rgba(57, 208, 232, 0.3);
  --font: 'Poppins', sans-serif;
}

/* ---- GLOBAL RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 100px 0;
}

/* ---- UTILITY ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(57, 208, 232, 0.15), rgba(51, 60, 129, 0.2));
  border: 1px solid var(--glass-border);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(57, 208, 232, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(57, 208, 232, 0.6);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
}

.btn-secondary-custom {
  background: transparent;
  color: var(--text-white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(57, 208, 232, 0.2);
}

/* =============================
   PRELOADER
============================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
  animation: preloaderPulse 1s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 20px var(--accent);
  }

  50% {
    transform: scale(1.2);
    text-shadow: 0 0 40px var(--accent);
  }
}

.preloader-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: preloaderLoad 2s ease forwards;
}

@keyframes preloaderLoad {
  to {
    width: 100%;
  }
}

/* =============================
   NAVBAR
============================= */
#mainNavbar {
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
  z-index: 9999;
}

#mainNavbar.scrolled {
  background: rgba(9, 13, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: spinSlow 6s linear infinite;
}

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

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.brand-accent {
  color: var(--accent);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(57, 208, 232, 0.3);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(57, 208, 232, 0.5) !important;
}

.nav-cta::after {
  display: none;
}

.navbar-toggler {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 8px 12px;
  border-radius: 8px;
}

.toggler-icon {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =============================
   HERO SECTION
============================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(51, 60, 129, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(57, 208, 232, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(57, 208, 232, 0.3);
  animation: floatAnim 4s ease-in-out infinite;
}

.float-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.float-2 {
  top: 25%;
  right: 12%;
  animation-delay: 0.5s;
  font-size: 2rem;
}

.float-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}

.float-4 {
  top: 60%;
  right: 8%;
  animation-delay: 1.5s;
  font-size: 1.2rem;
}

.float-5 {
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.float-6 {
  top: 45%;
  left: 15%;
  animation-delay: 2.5s;
  font-size: 1rem;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.7;
  }
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(57, 208, 232, 0.15), rgba(51, 60, 129, 0.2));
  border: 1px solid var(--glass-border);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  margin-top: 70px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(57, 208, 232, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(57, 208, 232, 0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-subtitle span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hero-subtitle span i {
  color: var(--accent);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent);
  font-size: 1rem;
}

/* AC 3D Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.ac-3d-card {
  perspective: 1000px;
  width: 320px;
}

.ac-inner {
  transform-style: preserve-3d;
  animation: acFloat 5s ease-in-out infinite;
  padding: 24px;
  background: linear-gradient(135deg, rgba(51, 60, 129, 0.3), rgba(57, 208, 232, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(57, 208, 232, 0.1);
  position: relative;
}

@keyframes acFloat {

  0%,
  100% {
    transform: translateY(0) rotateX(5deg) rotateY(-5deg);
  }

  50% {
    transform: translateY(-20px) rotateX(-5deg) rotateY(5deg);
  }
}

.ac-unit-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
}

.ac-body {
  width: 240px;
  background: linear-gradient(180deg, #1a2060, #253080);
  border-radius: 16px;
  padding: 12px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(57, 208, 232, 0.3);
}

.ac-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 4px;
  margin-bottom: 10px;
}

.ac-vents {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}

.ac-vents span {
  width: 30px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 4px;
  animation: ventAnim 2s ease-in-out infinite alternate;
}

.ac-vents span:nth-child(2) {
  animation-delay: 0.2s;
}

.ac-vents span:nth-child(3) {
  animation-delay: 0.4s;
}

.ac-vents span:nth-child(4) {
  animation-delay: 0.6s;
}

.ac-vents span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes ventAnim {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.ac-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 8px;
}

.ac-power {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ac-power.on {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: powerBlink 2s ease-in-out infinite;
}

@keyframes powerBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.ac-indicator {
  width: 40px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 3px;
  animation: indAnim 2s linear infinite;
}

@keyframes indAnim {
  0% {
    opacity: 0.3
  }

  50% {
    opacity: 1
  }

  100% {
    opacity: 0.3
  }
}

.ac-temp {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
}

.ac-bottom-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 3px;
}

.ac-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(57, 208, 232, 0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

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

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2)
  }
}

.ac-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: particleMove 3s ease-in-out infinite;
}

.p1 {
  top: 20px;
  left: 30px;
  animation-delay: 0s;
}

.p2 {
  top: 40px;
  right: 25px;
  animation-delay: 0.75s;
}

.p3 {
  bottom: 20px;
  left: 50px;
  animation-delay: 1.5s;
}

.p4 {
  bottom: 30px;
  right: 40px;
  animation-delay: 2.25s;
}

@keyframes particleMove {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.ac-label {
  margin-top: 16px;
  text-align: center;
}

.ac-label span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ac-rating {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* =============================
   ABOUT SECTION
============================= */
.about-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.section-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 208, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 208, 232, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 400px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('https://static.vecteezy.com/system/resources/thumbnails/071/837/068/small/technician-repairing-white-wall-mounted-air-conditioner-in-modern-indoor-setting-free-photo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-img-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}

.about-icon-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-icon {
  font-size: 4rem;
  color: var(--accent);
  animation: iconPulse 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes iconPulse {

  0%,
  100% {
    text-shadow: 0 0 20px var(--accent);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 50px var(--accent);
    transform: scale(1.1);
  }
}

.icon-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3s ease-in-out infinite;
}

.r1 {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.r2 {
  width: 130px;
  height: 130px;
  animation-delay: 0.5s;
}

.r3 {
  width: 180px;
  height: 180px;
  animation-delay: 1s;
}

@keyframes ringExpand {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.orbit-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}

.od1 {
  animation: orbit1 6s linear infinite;
}

.od2 {
  animation: orbit2 8s linear infinite;
}

.od3 {
  animation: orbit3 5s linear infinite;
}

@keyframes orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(90px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(65px) rotate(-120deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(65px) rotate(-480deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(90px) rotate(-240deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(90px) rotate(-600deg);
  }
}

.experience-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  padding: 16px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(57, 208, 232, 0.3);
}

.exp-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.about-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}

.about-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(57, 208, 232, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.feature-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================
   SERVICES SECTION
============================= */
.services-section {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(57, 208, 232, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(51, 60, 129, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(57, 208, 232, 0.2), 0 0 40px rgba(51, 60, 129, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(57, 208, 232, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.service-card-featured {
  background: linear-gradient(135deg, rgba(51, 60, 129, 0.4), rgba(57, 208, 232, 0.1));
  border-color: var(--accent);
}

.service-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.service-icon-wrap {
  margin-bottom: 20px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(57, 208, 232, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(57, 208, 232, 0.5);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li i {
  color: var(--accent);
  font-size: 0.8rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.service-cta:hover {
  border-bottom-color: var(--accent);
  gap: 6px;
}

/* =============================
   AREAS SECTION
============================= */
.areas-section {
  background: var(--bg-dark);
  position: relative;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.area-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.area-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57, 208, 232, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-item:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(57, 208, 232, 0.2);
}

.area-item:hover::after {
  opacity: 1;
}

.area-icon {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.area-item:hover .area-icon {
  transform: scale(1.2) translateY(-3px);
}

.area-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.area-item-cta {
  background: linear-gradient(135deg, rgba(51, 60, 129, 0.4), rgba(57, 208, 232, 0.1));
  border-color: var(--accent);
}

.area-item-cta span {
  color: var(--accent);
}

.areas-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.areas-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* =============================
   PRICING SECTION
============================= */
.pricing-section {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(51, 60, 129, 0.2) 0%, transparent 70%);
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(57, 208, 232, 0.5);
  box-shadow: 0 20px 50px rgba(57, 208, 232, 0.15);
}

.pricing-featured {
  background: linear-gradient(135deg, rgba(51, 60, 129, 0.5), rgba(57, 208, 232, 0.15));
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(57, 208, 232, 0.25);
}

.pricing-featured:hover {
  transform: translateY(-18px);
}

.pricing-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 208, 232, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(57, 208, 232, 0.3);
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-features li i {
  font-size: 0.75rem;
}

.pricing-features li:not(.disabled) i {
  color: var(--accent);
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li.disabled i {
  color: rgba(255, 255, 255, 0.2);
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 60, 129, 0.4);
  color: #fff;
}

.pricing-btn-featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(57, 208, 232, 0.4);
}

.pricing-btn-featured:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 8px 30px rgba(57, 208, 232, 0.6);
}

/* =============================
   TESTIMONIALS SECTION
============================= */
.testimonials-section {
  background: var(--bg-dark);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(57, 208, 232, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(57, 208, 232, 0.15);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  gap: 4px;
  display: flex;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(57, 208, 232, 0.4);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* =============================
   STATS SECTION
============================= */
.stats-section {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(51, 60, 129, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(57, 208, 232, 0.1) 0%, transparent 50%);
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(57, 208, 232, 0.2);
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  display: inline-block;
  color: var(--accent);
  vertical-align: top;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
  background: var(--bg-dark);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(57, 208, 232, 0.15);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-btn i {
  font-size: 1.8rem;
}

.wa-pulse {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {

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

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

/* Contact Form */
.contact-form-card {
  padding: 40px;
}

.form-group-custom {
  margin-bottom: 20px;
}

.form-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--accent);
  font-size: 0.9rem;
  z-index: 1;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

select.form-control-custom {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

select.form-control-custom option {
  background: var(--bg-darker);
  color: #fff;
}

textarea.form-control-custom {
  min-height: 100px;
  resize: vertical;
}

.textarea-wrap {
  align-items: flex-start;
}

.textarea-wrap i {
  top: 16px;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57, 208, 232, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(57, 208, 232, 0.1), rgba(51, 60, 129, 0.2));
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success-msg i {
  margin-right: 8px;
}

/* =============================
   FOOTER
============================= */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-brand i {
  color: var(--accent);
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(57, 208, 232, 0.3);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.9rem;
  width: 18px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* =============================
   FLOATING CTA
============================= */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-wa,
.float-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.float-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: floatPulse 3s ease-in-out infinite;
}

.float-call {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  animation: floatPulse 3s ease-in-out infinite 1.5s;
}

.float-wa:hover,
.float-call:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 6px 30px rgba(57, 208, 232, 0.4);
  }
}

/* =============================
   SCROLL TO TOP
============================= */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 94px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9989;
  box-shadow: 0 4px 15px rgba(57, 208, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(57, 208, 232, 0.5);
}

/* =============================
   SCROLL REVEAL ANIMATIONS
============================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* =============================
   AREA ITEM ANIMATION CLASSES
============================= */
.area-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.area-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .hero-visual {
    display: none;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .section-subtitle {
    margin: 0 auto;
  }

  .about-card {
    min-height: auto;
  }

  .ac-3d-card {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 100%;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-trust {
    gap: 12px;
  }

  .trust-item {
    font-size: 0.78rem;
  }
}

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

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .pricing-featured {
    transform: none;
  }

  .contact-form-card {
    padding: 24px;
  }

  .scroll-top {
    right: 24px;
    bottom: 155px;
  }
}