/* ===================================
   AKNova Studio - Ultra-Modern Portfolio
   Design: High-tech, Glassmorphism, Futuristic
   =================================== */

/* ===================================
   COLOR VARIABLES
   CUSTOMIZATION: Change these to customize your color scheme
   =================================== */
:root {
  /* Primary Colors */
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --indigo: #6366f1;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --pink: #ec4899;

  /* Text Colors */
  --text-white: #ffffff;
  --text-gray: #e5e7eb;
  --text-gray-light: #9ca3af;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--indigo), var(--purple));
  --gradient-secondary: linear-gradient(135deg, var(--cyan), var(--indigo));
  --gradient-accent: linear-gradient(135deg, var(--purple), var(--pink));

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Mode Variables */
[data-theme="light"] {
  --bg-dark: #f8f9fa;
  --bg-darker: #ffffff;
  --text-white: #1a1a1a;
  --text-gray: #4b5563;
  --text-gray-light: #6b7280;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor will replace default */
}

/* Show default cursor on mobile */
@media (max-width: 768px) {
  body {
    cursor: default;
  }
}

::selection {
  background: var(--indigo);
  color: var(--text-white);
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, opacity 0.3s ease;
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--text-white);
  top: -5px;
  left: -5px;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  top: -20px;
  left: -20px;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-hover .cursor-follower {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.2);
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(99, 102, 241, 0.1);
  border-top: 3px solid var(--indigo);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

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

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

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8))
         drop-shadow(0 0 40px rgba(99, 102, 241, 0.5))
         drop-shadow(0 0 60px rgba(99, 102, 241, 0.3));
  animation: gradientGlow 3s ease-in-out infinite;
}

@keyframes gradientGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8))
            drop-shadow(0 0 40px rgba(99, 102, 241, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 1))
            drop-shadow(0 0 60px rgba(99, 102, 241, 0.7))
            drop-shadow(0 0 90px rgba(99, 102, 241, 0.4));
  }
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--indigo);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--indigo);
  transform: translateY(-3px);
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  z-index: 1001;
}

.nav-logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

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

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.theme-toggle:hover {
  background: var(--indigo);
  border-color: var(--indigo);
}

.theme-toggle i {
  position: absolute;
  font-size: 1.1rem;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.theme-toggle .fa-sun {
  opacity: 0;
  transform: rotate(180deg);
}

.theme-toggle .fa-moon {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="light"] .theme-toggle .fa-sun {
  opacity: 1;
  transform: rotate(0deg);
}

[data-theme="light"] .theme-toggle .fa-moon {
  opacity: 0;
  transform: rotate(-180deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu-link {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-menu-link:hover {
  color: var(--text-white);
  transform: translateX(10px);
}

/* ===================================
   PAGE HEADER (for individual pages)
   =================================== */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background: var(--bg-dark);
}

.contact-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/background3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.65) 100%
  );
}

/* Privacy Policy Page Header */
.page-header[style*="tech6.jpg"] .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.65) 100%
  );
}

/* Cookie Settings Page Header */
.page-header[style*="tech7.jpg"] .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.65) 100%
  );
}

.services-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/tech1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.services-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(10, 10, 15, 0.7) 100%
  );
}

.care-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/tech2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.care-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(10, 10, 15, 0.7) 100%
  );
}

.portfolio-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/tech3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.portfolio-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(10, 10, 15, 0.7) 100%
  );
}

.about-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.about-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.65) 100%
  );
}

.page-header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
}

.page-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/backgroundhome.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(10, 10, 15, 0.50) 0%,
    rgba(10, 10, 15, 0.40) 50%,
    rgba(99, 102, 241, 0.15) 100%
  );
  backdrop-filter: blur(0px);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15), transparent 50%),
              radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  background: var(--indigo);
  border-radius: 50%;
  opacity: 0.3;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-gray);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Space Grotesk', sans-serif;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.typing-text {
  display: inline-block;
  position: relative;
}

.typing-text::after {
  content: '|';
  display: inline-block;
  animation: blink 1s step-end infinite;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-gray-light);
  font-size: 0.875rem;
  animation: fadeInUp 0.8s ease 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--indigo);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Fade In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  padding: var(--section-padding) 0;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  color: var(--text-gray);
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--indigo);
}

.feature-item i {
  color: var(--indigo);
  font-size: 1.25rem;
}

.image-wrapper {
  position: relative;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-image {
  text-align: center;
  color: var(--text-gray-light);
}

.placeholder-image i {
  color: var(--indigo);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.placeholder-image small {
  font-size: 0.875rem;
  opacity: 0.7;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.9) contrast(1.1);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  animation: float-badge 3s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  right: -10%;
}

.badge-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.5s;
}

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

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

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

.service-card {
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: visible;
}

.service-card > a {
  position: relative;
  overflow: visible;
  display: block;
}

.service-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: all 0.5s ease;
  z-index: 0;
  filter: brightness(0.7);
}

.service-card:hover .service-bg-image {
  opacity: 0.22;
  transform: scale(1.05);
  filter: brightness(0.8);
}

.service-card > *:not(.service-bg-image) {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--text-white);
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.service-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.service-features i {
  color: var(--indigo);
  font-size: 0.875rem;
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  padding: 0.4rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--indigo);
  transition: var(--transition-smooth);
}

.tech-badge:hover {
  background: var(--indigo);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Service Package Pricing Styles */
.price-section {
  margin: 24px 0 20px 0;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #6366f1;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge Pulse Animation - Heartbeat Style */
@keyframes badgePulse {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  }
  14% {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.7);
  }
  28% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  }
  42% {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.7);
  }
  70% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  }
}

@keyframes badgePulseGreen {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  14% {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.7);
  }
  28% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  42% {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
}

/* Popular Badge - Ribbon Style */
.popular-badge {
  position: absolute !important;
  top: -2.5rem !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 10px 15px;
  padding-bottom: 5px;
  border-radius: 3px 3px 0 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
  z-index: 10;
  min-width: 80px;
  text-align: center;
}

.popular-badge::before,
.popular-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
}

.popular-badge::before {
  left: 0;
  border-width: 15px 0 0 40px;
  border-color: #5654d4 transparent transparent transparent;
}

.popular-badge::after {
  right: 0;
  border-width: 15px 40px 0 0;
  border-color: #5654d4 transparent transparent transparent;
}

.popular-card {
  border: 2px solid rgba(99, 102, 241, 0.3);
}

.popular-card:hover {
  border-color: var(--indigo);
  box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
}

/* ===================================
   TECH STACK SECTION
   =================================== */
.tech-stack {
  padding: var(--section-padding) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--indigo);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.tech-icon {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
}

.tech-item:hover .tech-icon {
  transform: rotateY(360deg);
}

.tech-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
}

/* ===================================
   CARE PACKAGES SECTION
   =================================== */
.care-packages {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

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

.care-card {
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: visible;
}

.care-card > a {
  position: relative;
  overflow: visible;
  display: block;
}

.care-card > *:not(.service-bg-image) {
  position: relative;
  z-index: 1;
}

.care-card .service-bg-image {
  z-index: 0;
}

.care-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.care-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.care-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--text-white);
  transition: var(--transition-bounce);
}

.care-card:hover .care-icon {
  transform: rotateY(360deg);
}

.package-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.package-price {
  margin-top: 12px;
  line-height: 1;
}

.package-price .currency {
  font-size: 20px;
  color: #94a3b8;
  vertical-align: top;
  font-weight: 600;
}

.package-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 4px;
}

.package-price .period {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
}

.package-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: center;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.package-features i {
  color: var(--indigo);
  font-size: 0.875rem;
}

.best-for {
  margin: 20px 0;
  padding: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  text-align: center;
}

.best-for .label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.best-for .value {
  font-size: 14px;
  color: #e5e7eb;
  font-weight: 500;
}

/* Recommended Badge - Ribbon Style */
.recommended-badge {
  position: absolute !important;
  top: -2.5rem !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 10px 15px;
  padding-bottom: 5px;
  border-radius: 3px 3px 0 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
  z-index: 10;
  min-width: 80px;
  text-align: center;
}

.recommended-badge::before,
.recommended-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
}

.recommended-badge::before {
  left: 0;
  border-width: 15px 0 0 40px;
  border-color: #059669 transparent transparent transparent;
}

.recommended-badge::after {
  right: 0;
  border-width: 15px 40px 0 0;
  border-color: #059669 transparent transparent transparent;
}

.recommended-card {
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.recommended-card:hover {
  border-color: #10b981;
  box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.placeholder-portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-gray-light);
}

.placeholder-portfolio i {
  color: var(--indigo);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.placeholder-portfolio small {
  font-size: 0.875rem;
  opacity: 0.7;
}

.portfolio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-photo {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.portfolio-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.portfolio-tags span {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
}

.portfolio-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-link:hover {
  background: var(--text-white);
  color: var(--indigo);
  transform: translateY(-3px);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.contact-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2), transparent 70%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateX(10px);
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--indigo);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--indigo);
}

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

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.25rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--indigo);
  transform: translateY(-5px) rotate(10deg);
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e5e7eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--indigo);
  background: rgba(99, 102, 241, 0.05);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* GDPR Consent Checkbox */
.form-consent {
  margin-bottom: 1.5rem;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.consent-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.consent-checkmark {
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.15));
  border: 3px solid #8b5cf6;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.consent-checkmark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.consent-checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}

.consent-checkbox:hover .consent-checkmark {
  border-color: #a78bfa;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3));
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 50px rgba(139, 92, 246, 0.5), 0 0 70px rgba(139, 92, 246, 0.3);
  transform: scale(1.1);
}

.consent-checkbox input[type="checkbox"]:checked ~ .consent-checkmark {
  border-color: #a78bfa;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.9), 0 0 45px rgba(139, 92, 246, 0.6), 0 0 65px rgba(139, 92, 246, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.consent-checkbox input[type="checkbox"]:checked ~ .consent-checkmark::before,
.consent-checkbox input[type="checkbox"]:checked ~ .consent-checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}

.consent-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.consent-text a {
  color: var(--indigo);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.consent-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transition: width 0.3s ease;
}

.consent-text a:hover {
  color: var(--purple);
}

.consent-text a:hover::after {
  width: 100%;
}

/* ===================================
   VALUES SECTION
   =================================== */
.values-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-white);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===================================
   APPROACH SECTION
   =================================== */
.approach-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03), transparent);
}

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

.approach-card {
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  overflow: visible;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.approach-number {
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.approach-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--indigo);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.approach-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.approach-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive Approach Section */
@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    padding: 2rem;
  }

  .approach-number {
    font-size: 3rem;
    top: -10px;
    right: 15px;
  }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-content {
  padding: 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Newsletter Form Styles */
.newsletter-form {
  margin: 2.5rem 0;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
  color: var(--text-gray);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--indigo);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.newsletter-btn {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 0.75rem;
  font-style: italic;
}

/* Responsive Newsletter Form */
@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-input {
    min-width: 100%;
  }

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

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo p {
  font-size: 0.875rem;
  color: var(--text-gray-light);
  margin: 0;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-gray-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: var(--text-white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 998;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

[data-aos="fade-up"] {
  transform: translateY(50px);
}

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

[data-aos="fade-down"] {
  transform: translateY(-50px);
}

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

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

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

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

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

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Make page headers and hero content visible immediately (above the fold) */
.page-header [data-aos],
.hero [data-aos] {
  animation: fadeInImmediate 0.6s ease-out forwards;
}

@keyframes fadeInImmediate {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Force all animated elements to be visible when aos-animate is added */
[data-aos].aos-animate {
  opacity: 1 !important;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0) !important;
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0) !important;
}

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

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

[data-aos="zoom-in"].aos-animate {
  transform: scale(1) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

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

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .care-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .package-price .amount {
    font-size: 40px;
  }

  .price {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-links {
    display: none;
  }

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

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

  .section-subtitle {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .tech-icon {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-card,
  .care-card,
  .contact-form {
    padding: 1.5rem;
  }

  .package-price .amount {
    font-size: 36px;
  }

  .price {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/* ===================================
   NEWS PAGE STYLES
   =================================== */

/* News Header Background */
.news-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/background2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.news-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(10, 10, 15, 0.7) 100%
  );
}

.news-section {
  padding: var(--section-padding) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.news-card {
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.news-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-gray-light);
  font-size: 0.9rem;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--indigo);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.news-link:hover {
  gap: 1rem;
  color: var(--purple);
}

.news-link i {
  transition: var(--transition-smooth);
}

/* ===================================
   ARTICLE/BLOG POST STYLES
   =================================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--indigo);
  gap: 0.75rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content {
  padding: var(--section-padding) 0;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.article-image {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 15px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-text {
  color: var(--text-gray);
  line-height: 1.8;
}

.article-text .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.article-text h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.article-text h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-text p {
  margin-bottom: 1.5rem;
}

.article-text ul,
.article-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-text li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.article-text blockquote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--indigo);
  background: rgba(99, 102, 241, 0.05);
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.article-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Article Styles */
@media (max-width: 768px) {
  .article-body {
    padding: 2rem 1.5rem;
  }

  .article-text .lead {
    font-size: 1.1rem;
  }

  .article-text h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
  }

  .article-text h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
  }

  .article-text blockquote {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .article-cta {
    flex-direction: column;
  }

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

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .navbar,
  .mobile-menu,
  .scroll-top,
  .cursor,
  .cursor-follower,
  .loading-screen,
  .particles,
  .hero-gradient,
  .contact-gradient {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
/* Updated Sun, Dec 28, 2025  7:26:19 PM */

/* ===================================
   FAQ PAGE STYLES
   =================================== */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-category-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-gray);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-category-btn:hover {
  border-color: var(--indigo);
  background: rgba(99, 102, 241, 0.1);
  color: var(--text-white);
}

.faq-category-btn.active {
  border-color: var(--indigo);
  background: var(--gradient-primary);
  color: var(--text-white);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--indigo);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  color: var(--text-gray);
  line-height: 1.7;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--text-white);
  font-weight: 600;
}

.faq-item:hover {
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-categories {
    gap: 0.75rem;
  }

  .faq-category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* FAQ Header Background */
.faq-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/background2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.faq-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 10, 15, 0.85) 0%,
    rgba(10, 10, 15, 0.75) 50%,
    rgba(139, 92, 246, 0.3) 100%
  );
}

.booking-header .page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/tech5.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.booking-header .page-header-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.65) 100%
  );
}

/* ===================================
   Monthly Plans Section
   =================================== */
.monthly-plans-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.monthly-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.monthly-plan-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.monthly-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
}

/* Bronze Card */
.bronze-card::before {
  background: linear-gradient(90deg, #CD7F32, #B87333);
}

.bronze-card:hover {
  border-color: rgba(205, 127, 50, 0.3);
  transform: translateY(-5px);
}

/* Gold Card */
.gold-card::before {
  background: linear-gradient(90deg, #FFD700, #FFA500);
}

.gold-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.popular-plan {
  transform: scale(1.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.monthly-plan-card .popular-badge {
  position: absolute !important;
  top: -5px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 10px 15px;
  padding-bottom: 5px;
  border-radius: 3px 3px 0 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 10;
  min-width: 80px;
  text-align: center;
}

.monthly-plan-card .popular-badge::before,
.monthly-plan-card .popular-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
}

.monthly-plan-card .popular-badge::before {
  left: 0;
  border-width: 15px 0 0 40px;
  border-color: #D4AF37 transparent transparent transparent;
}

.monthly-plan-card .popular-badge::after {
  right: 0;
  border-width: 15px 40px 0 0;
  border-color: #D4AF37 transparent transparent transparent;
}

.monthly-plan-card .popular-badge i {
  margin-right: 0.3rem;
  font-size: 8px;
}

/* Platinum Card */
.platinum-card::before {
  background: linear-gradient(90deg, #E5E4E2, #BCC6CC);
}

.platinum-card:hover {
  border-color: rgba(229, 228, 226, 0.3);
  transform: translateY(-5px);
}

/* Plan Badges */
.plan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.bronze-badge {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 115, 51, 0.2));
  color: #CD7F32;
  border: 1px solid rgba(205, 127, 50, 0.3);
}

.gold-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.platinum-badge {
  background: linear-gradient(135deg, rgba(229, 228, 226, 0.2), rgba(188, 198, 204, 0.2));
  color: #E5E4E2;
  border: 1px solid rgba(229, 228, 226, 0.3);
}

/* Plan Content */
.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-right: 0.3rem;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 0.3rem;
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.plan-features li i {
  color: var(--indigo);
  margin-right: 1rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.bronze-card .plan-features li i {
  color: #CD7F32;
}

.gold-card .plan-features li i {
  color: #FFD700;
}

.platinum-card .plan-features li i {
  color: #E5E4E2;
}

/* Plans Note */
.plans-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.plans-note p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.plans-note i {
  color: var(--indigo);
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
  .monthly-plans-grid {
    grid-template-columns: 1fr;
  }

  .popular-plan {
    transform: scale(1);
  }

  .plan-price .amount {
    font-size: 3rem;
  }
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
}

.why-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(99, 102, 241, 0.4);
}

.why-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.why-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Services Explore CTA - Ultra Tech
   =================================== */
.services-explore {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.services-explore-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.services-explore-content {
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow:
    0 0 80px rgba(99, 102, 241, 0.15),
    inset 0 0 80px rgba(99, 102, 241, 0.05);
  animation: contentPulse 4s ease-in-out infinite;
}

@keyframes contentPulse {
  0%, 100% {
    box-shadow:
      0 0 80px rgba(99, 102, 241, 0.15),
      inset 0 0 80px rgba(99, 102, 241, 0.05);
  }
  50% {
    box-shadow:
      0 0 100px rgba(99, 102, 241, 0.25),
      inset 0 0 100px rgba(99, 102, 241, 0.08);
  }
}

.explore-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(99, 102, 241, 0.05) 0px,
      transparent 1px,
      transparent 40px,
      rgba(99, 102, 241, 0.05) 41px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(99, 102, 241, 0.05) 0px,
      transparent 1px,
      transparent 40px,
      rgba(99, 102, 241, 0.05) 41px
    );
  border-radius: 30px;
  opacity: 0.5;
}

/* Icon with Orbits */
.explore-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.icon-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 100px;
  height: 100px;
  animation: orbitRotate 6s linear infinite, orbitGlow 3s ease-in-out infinite;
  border-color: rgba(99, 102, 241, 0.5);
}

.orbit-2 {
  width: 75px;
  height: 75px;
  animation: orbitRotate 4s linear infinite reverse, orbitGlow 2s ease-in-out infinite;
  border-color: rgba(139, 92, 246, 0.5);
}

.orbit-3 {
  width: 50px;
  height: 50px;
  animation: orbitRotate 2s linear infinite, orbitGlow 1.5s ease-in-out infinite;
  border-color: rgba(168, 85, 247, 0.5);
}

@keyframes orbitGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
  }
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.explore-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-radius: 12px;
  box-shadow:
    0 0 40px rgba(99, 102, 241, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: iconFloat 3s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
}

.explore-icon i {
  font-size: 1.5rem;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: iconSpin 8s linear infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes iconSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Pulse Badge */
.pulse-badge {
  animation: pulse 2s ease-in-out infinite;
}

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

/* Explore Title */
.explore-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0;
  position: relative;
  z-index: 1;
}

.glow-text {
  text-shadow: 
    0 0 20px rgba(99, 102, 241, 0.8),
    0 0 40px rgba(99, 102, 241, 0.5),
    0 0 60px rgba(99, 102, 241, 0.3);
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { 
    text-shadow: 
      0 0 20px rgba(99, 102, 241, 0.8),
      0 0 40px rgba(99, 102, 241, 0.5);
  }
  50% { 
    text-shadow: 
      0 0 30px rgba(99, 102, 241, 1),
      0 0 60px rgba(99, 102, 241, 0.7),
      0 0 90px rgba(99, 102, 241, 0.4);
  }
}

.explore-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Stats */
.explore-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
  animation: statFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(1) {
  animation-delay: 0s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
}

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

.stat-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.6));
  }
}

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

/* Futuristic Button */
.btn-futuristic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    0 10px 40px rgba(99, 102, 241, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-text {
  position: relative;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn-futuristic:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 50px rgba(99, 102, 241, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-futuristic:hover .btn-glow {
  left: 100%;
}

.btn-futuristic i {
  transition: transform 0.3s ease;
}

.btn-futuristic:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-explore {
    padding: 5rem 0;
  }

  .services-explore-content {
    padding: 3rem 1.5rem;
  }

  .explore-title {
    font-size: 2rem;
  }

  .explore-stats {
    gap: 2rem;
  }

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

  .btn-futuristic {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===================================
   Booking Page
   =================================== */
.booking-section {
  padding: var(--section-padding) 0;
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.booking-feature {
  text-align: center;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.booking-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid rgba(99, 102, 241, 0.2);
  transition: var(--transition-smooth);
}

.booking-feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.feature-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.booking-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Calendly Wrapper */
.calendly-wrapper {
  margin: 4rem 0;
}

.calendly-container {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 700px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow:
    0 0 80px rgba(99, 102, 241, 0.15),
    inset 0 0 80px rgba(99, 102, 241, 0.05);
}

.calendly-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(99, 102, 241, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(99, 102, 241, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(99, 102, 241, 0.03) 0px,
      transparent 1px,
      transparent 40px,
      rgba(99, 102, 241, 0.03) 41px
    );
  border-radius: 25px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.calendly-embed-responsive {
  position: relative;
  min-height: 700px;
  z-index: 2;
}

/* Booking Info */
.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.info-card {
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card h3 i {
  color: var(--indigo);
  font-size: 1.5rem;
}

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

.info-card ul li {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card ul li i {
  color: var(--indigo);
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-features {
    grid-template-columns: 1fr;
  }

  .calendly-container,
  .calendly-embed-responsive {
    min-height: 600px;
  }

  .booking-info {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Schedule Meeting Section - Ultra Tech
   =================================== */
.schedule-meeting-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.schedule-meeting-content {
  text-align: center;
  position: relative;
  padding: 3.5rem 2.5rem;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(99, 102, 241, 0.3);
  box-shadow:
    0 0 100px rgba(99, 102, 241, 0.2),
    inset 0 0 100px rgba(99, 102, 241, 0.08);
  animation: scheduleGlow 4s ease-in-out infinite;
}

@keyframes scheduleGlow {
  0%, 100% {
    box-shadow:
      0 0 100px rgba(99, 102, 241, 0.2),
      inset 0 0 100px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow:
      0 0 130px rgba(99, 102, 241, 0.3),
      inset 0 0 130px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.5);
  }
}

.schedule-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(99, 102, 241, 0.02) 0px,
      transparent 2px,
      transparent 30px,
      rgba(99, 102, 241, 0.02) 32px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(139, 92, 246, 0.02) 0px,
      transparent 2px,
      transparent 30px,
      rgba(139, 92, 246, 0.02) 32px
    );
  border-radius: 30px;
  opacity: 0.7;
}

/* Icon with Pulses */
.schedule-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.schedule-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(99, 102, 241, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pulse-1 {
  width: 120px;
  height: 120px;
  animation: pulseRing 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.pulse-2 {
  width: 90px;
  height: 90px;
  animation: pulseRing 3s cubic-bezier(0.4, 0, 0.2, 1) infinite 1s;
  border-color: rgba(139, 92, 246, 0.4);
}

.pulse-3 {
  width: 60px;
  height: 60px;
  animation: pulseRing 3s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
  border-color: rgba(168, 85, 247, 0.4);
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 1;
  }
}

.schedule-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-radius: 18px;
  box-shadow:
    0 0 50px rgba(99, 102, 241, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.15);
  animation: scheduleIconFloat 4s ease-in-out infinite;
}

.schedule-icon i {
  font-size: 2.2rem;
  color: #fff;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
  animation: scheduleIconRotate 12s linear infinite;
}

@keyframes scheduleIconFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px) scale(1.05);
  }
}

@keyframes scheduleIconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Glow Badge */
.glow-badge {
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

/* Title */
.schedule-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.schedule-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Benefits */
.schedule-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  transition: var(--transition-smooth);
  animation: benefitFloat 3s ease-in-out infinite;
}

.benefit-item:nth-child(1) {
  animation-delay: 0s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.5s;
}

.benefit-item:nth-child(3) {
  animation-delay: 1s;
}

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

.benefit-item:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.benefit-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: benefitIconGlow 2s ease-in-out infinite;
}

@keyframes benefitIconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.7));
  }
}

.benefit-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mega Button */
.btn-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 15px 50px rgba(99, 102, 241, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.12);
  z-index: 1;
  animation: btnMegaPulse 3s ease-in-out infinite;
}

@keyframes btnMegaPulse {
  0%, 100% {
    box-shadow:
      0 15px 50px rgba(99, 102, 241, 0.5),
      inset 0 0 30px rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 20px 70px rgba(99, 102, 241, 0.7),
      inset 0 0 40px rgba(255, 255, 255, 0.18);
  }
}

.btn-mega-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-mega-text {
  position: relative;
}

.btn-mega-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-mega:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 25px 70px rgba(99, 102, 241, 0.8),
    inset 0 0 50px rgba(255, 255, 255, 0.25);
}

.btn-mega:hover .btn-mega-glow {
  left: 100%;
}

.btn-mega i {
  transition: transform 0.4s ease;
  font-size: 1.2rem;
}

.btn-mega:hover i {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
  .schedule-meeting-section {
    padding: 4rem 0;
  }

  .schedule-meeting-content {
    padding: 2.5rem 1.5rem;
  }

  .schedule-title {
    font-size: 2rem;
  }

  .schedule-benefits {
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.2rem 1.5rem;
  }

  .btn-mega {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }
}

/* ===================================
   COOKIE BANNER & SETTINGS
   =================================== */

/* Cookie Banner - Horizontal Slim Design */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.85) 0%, rgba(20, 20, 30, 0.85) 100%);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(99, 102, 241, 0.4);
  padding: 0.75rem 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 -15px 50px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(99, 102, 241, 0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--indigo) 30%,
    var(--purple) 70%,
    transparent 100%
  );
}

.cookie-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h4 {
  display: none;
}

.cookie-banner-text p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.cookie-banner-text a {
  color: var(--indigo);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.cookie-banner-text a:hover {
  color: var(--purple);
  text-decoration: underline;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  min-width: auto;
  border-radius: 8px;
  font-weight: 500;
}

.cookie-banner .btn span {
  margin-right: 0.35rem;
}

.cookie-banner .btn i {
  font-size: 0.75rem;
}

.cookie-banner .btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cookie-banner .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}

.cookie-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--text-gray);
}

.cookie-banner .btn-secondary:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--indigo);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* Cookie Settings Page */
.cookie-settings-section {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
}

.cookie-settings-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cookie-categories {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-category {
  padding: 2rem;
  transition: var(--transition-smooth);
}

.cookie-category:hover {
  transform: translateY(-2px);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cookie-category-info {
  flex: 1;
  min-width: 250px;
}

.cookie-category-info h3 {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-category-info h3 i {
  color: var(--indigo);
  font-size: 1.2rem;
}

.cookie-category-info p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--text-gray);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  border-color: transparent;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(30px);
  background: white;
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.toggle-status {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
  min-width: 90px;
}

.cookie-category-details {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-category-details p {
  margin-bottom: 0.75rem;
}

.cookie-category-details strong {
  color: var(--text-white);
  font-weight: 600;
}

.cookie-category-details ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.cookie-category-details li {
  margin-bottom: 0.5rem;
}

.cookie-category-details a {
  color: var(--indigo);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cookie-category-details a:hover {
  color: var(--purple);
  text-decoration: underline;
}

.cookie-actions {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-width: 160px;
}

.cookie-info {
  max-width: 900px;
  margin: 3rem auto 0;
}

.cookie-info .info-card {
  padding: 2rem;
}

.cookie-info h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-info h3 i {
  color: var(--indigo);
}

.cookie-info p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cookie-info p:last-child {
  margin-bottom: 0;
}

.cookie-info a {
  color: var(--indigo);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cookie-info a:hover {
  color: var(--purple);
  text-decoration: underline;
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1rem 0;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .cookie-banner-text p {
    font-size: 0.8rem;
  }

  .cookie-banner-actions {
    justify-content: space-between;
    width: 100%;
  }

  .cookie-banner .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
