/* ============================================
   AAVATAR - Main Stylesheet
   "Human Support • Digital Empowerment • Career Growth • Divine Guidance"
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #1a237e;
  --primary-light: #3949ab;
  --primary-dark: #0d1642;

  /* Secondary Colors */
  --secondary: #ffc107;
  --secondary-light: #ffca28;
  --secondary-dark: #ff8f00;

  /* Accent Colors */
  --saffron: #ff9800;
  --spiritual-purple: #7c4dff;
  --spiritual-light: #b388ff;

  /* Neutrals */
  --white: #ffffff;
  --light-grey: #f8f9fa;
  --grey: #e9ecef;
  --dark-grey: #6c757d;
  --text: #1a1a2e;
  --text-light: #4a4a5a;
  --dark-bg: #0d0d1a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--saffron) 100%);
  --gradient-spiritual: linear-gradient(135deg, var(--spiritual-purple) 0%, var(--primary-light) 100%);
  --gradient-hero: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #7c4dff 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a3e 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.1);
  --shadow-md: 0 4px 20px rgba(26, 35, 126, 0.15);
  --shadow-lg: 0 8px 40px rgba(26, 35, 126, 0.2);
  --shadow-glow: 0 0 30px rgba(255, 193, 7, 0.3);
  --shadow-spiritual: 0 0 40px rgba(124, 77, 255, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   2. BASE RESET & TYPOGRAPHY
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-full {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
}

.section-title p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.text-gold {
  color: var(--secondary);
}

.bg-light {
  background-color: var(--light-grey);
}

.bg-dark {
  background: var(--gradient-dark);
}

.bg-primary {
  background: var(--gradient-primary);
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--gradient-gold);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-spiritual {
  background: var(--gradient-spiritual);
  color: var(--white);
  box-shadow: var(--shadow-spiritual);
}

.btn-spiritual:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(124, 77, 255, 0.5);
}

/* ============================================
   5. NAVIGATION - Liquid Glass Style
   ============================================ */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1300px;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  transition: var(--transition-normal);
  /* Liquid Glass Effect */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  pointer-events: none;
}

.navbar.scrolled {
  background: linear-gradient(135deg,
      rgba(26, 35, 126, 0.85) 0%,
      rgba(57, 73, 171, 0.75) 50%,
      rgba(26, 35, 126, 0.85) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 193, 7, 0.3);
  box-shadow:
    0 8px 40px rgba(26, 35, 126, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 193, 7, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Premium Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      var(--secondary) 0%,
      var(--saffron) 50%,
      var(--secondary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow:
    0 4px 15px rgba(255, 193, 7, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%);
  border-radius: 14px 14px 0 0;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow:
    0 6px 20px rgba(255, 193, 7, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg,
      var(--white) 0%,
      var(--secondary-light) 50%,
      var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.logo-text::after {
  content: 'AAVATAR';
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(255, 193, 7, 0.3) 50%,
      transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.dropdown-item:hover {
  background: var(--light-grey);
  color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ============================================
   Dark Navigation Variant (For Light Backgrounds)
   ============================================ */
.navbar.nav-dark .nav-link {
  color: #1a237e !important;
  font-weight: 600;
}

.navbar.nav-dark .nav-link::after {
  background: #1a237e !important;
}

.navbar.nav-dark .nav-link:hover {
  color: #ffc107 !important;
}

.navbar.nav-dark .logo-text {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: initial !important;
  color: #1a237e !important;
  text-shadow: none !important;
}

.navbar.nav-dark .menu-toggle span {
  background: #1a237e !important;
}

.navbar.nav-dark {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ============================================
   6. HERO SECTION with Background Slideshow
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Hero Overlay - Subtle dark gradient for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.5) 100%);
}

/* Slideshow Indicators */
.slideshow-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.slideshow-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slideshow-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slideshow-indicators .indicator.active {
  background: var(--secondary);
  border-color: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.15) 0%, transparent 40%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(2%, 2%) rotate(1deg);
  }

  50% {
    transform: translate(0, 4%) rotate(0deg);
  }

  75% {
    transform: translate(-2%, 2%) rotate(-1deg);
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  opacity: 0.3;
  animation: particleFloat 15s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.particle:nth-child(3) {
  left: 35%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 50%;
  animation-delay: 1s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(5) {
  left: 65%;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  left: 80%;
  animation-delay: 5s;
  width: 12px;
  height: 12px;
}

.particle:nth-child(7) {
  left: 90%;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--space-lg);
  max-width: 900px;
}

.hero-tagline {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-xl);
  color: var(--secondary);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--secondary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ============================================
   SCROLLING BANNER SECTION
   ============================================ */
.scrolling-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.scrolling-banner::before,
.scrolling-banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scrolling-banner::before {
  left: 0;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.scrolling-banner::after {
  right: 0;
  background: linear-gradient(270deg, var(--primary-dark) 0%, transparent 100%);
}

.banner-track {
  display: flex;
  animation: scroll-banner 30s linear infinite;
}

.banner-track:hover {
  animation-play-state: paused;
}

.banner-content {
  display: flex;
  flex-shrink: 0;
  gap: 3rem;
  padding: 0 1.5rem;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-item i {
  color: var(--secondary);
  font-size: 1.25rem;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   7. ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--light-grey);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* About Video Styles */
.about-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--dark-bg);
}

.video-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--saffron) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
  transition: var(--transition-normal);
  animation: pulse-glow 2s ease-in-out infinite;
}

.play-button i {
  margin-left: 5px;
  /* Optical centering for play icon */
}

.video-overlay:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.6);
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(255, 193, 7, 0.7), 0 0 60px rgba(255, 193, 7, 0.3);
  }
}

.play-text {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Legacy support for about-image if still used elsewhere */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  color: var(--text);
}

.about-feature i {
  color: var(--secondary);
  font-size: 1.25rem;
}

/* ============================================
   8. PILLARS SECTION - Clean White & Liquid
   ============================================ */
.pillars-section {
  background: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

/* Wider Container for Pillars */
.pillars-section .container {
  max-width: 1400px;
  /* Increased to allow wider cards */
}

.pillars-section .section-title h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
}

.pillars-section .section-title p {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  /* Reduced gap slightly for more width */
  position: relative;
  z-index: 1;
  padding: 0;
  /* Reset padding to maximize width */
}

/* Card Style - Clean White with Shadow */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  /* Reduced to "medium" padding */
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Enhanced shadow instead of border */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26, 35, 126, 0.15);
}

/* Top Gradient Line */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

/* Icons - Larger & Cleaner */
.pillar-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: var(--light-grey);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: rotate(-5deg) scale(1.1);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(26, 35, 126, 0.25);
}

/* Typography Updates - Increased Size */
.pillar-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  /* Increased from 1.35rem */
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pillar-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  /* Increased from 0.95rem */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  /* Dark text for white bg */
  flex-grow: 1;
}

.pillar-list {
  text-align: left;
  margin-bottom: 1.5rem;
  background: var(--light-grey);
  padding: 1.25rem;
  /* Increased padding */
  border-radius: var(--radius-sm);
  border: none;
  /* Removed border */
}

.pillar-list li {
  padding: 6px 0;
  /* More spacing */
  font-family: var(--font-accent);
  font-size: 0.95rem;
  /* Increased from 0.85rem */
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Button Alignment - FIXED VISIBILITY */
.pillar-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  /* Blue background */
  color: var(--white);
  /* White text */
  border: none;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.pillar-card .btn:hover {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* ============================================
   9. WHY CHOOSE SECTION
   ============================================ */
/* ============================================
   9. WHY CHOOSE SECTION - Scattered Collage
   ============================================ */
.why-section {
  background: #111;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 800px;
}

/* Huge Background Text */
.why-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.why-bg-text span {
  font-family: 'Impact', sans-serif;
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -5px;
  white-space: nowrap;
}

/* Container Z-Index */
.container.relative-z {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
}

/* Grid/Flex Layout */
.collage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

/* Base Card Style */
.collage-card {
  width: 300px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collage-card h3 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.collage-card p {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Card Variants */
.card-cyan {
  background: #4deeea;
  color: #000;
  min-height: 320px;
}

.card-pink {
  background: #ff0055;
  color: #fff;
  min-height: 280px;
}

.card-pink h3 {
  color: #fff;
}

.card-pink p {
  color: #fff;
}

.card-white {
  background: #fff;
  color: #000;
  min-height: 300px;
}

.card-white p {
  color: #000;
}

/* Polaroid Style */
.card-polaroid {
  background: #fff;
  padding: 15px 15px 50px 15px;
  /* Polaroid bottom padding */
  width: 280px;
  transform-origin: center;
}

.polaroid-inner {
  position: relative;
  overflow: hidden;
}

.polaroid-inner img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  border-bottom: 1px solid #eee;
}

.collage-card:hover .polaroid-inner img {
  filter: grayscale(0%);
}

.polaroid-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: left;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.polaroid-caption .date {
  font-size: 0.7rem;
  color: #666;
}

/* Rotation Classes */
.rotate-left {
  transform: rotate(-4deg);
  z-index: 1;
}

.rotate-right {
  transform: rotate(4deg);
  z-index: 1;
}

/* Hover Effects */
.collage-card:hover {
  transform: rotate(0deg) scale(1.1) translateY(-20px);
  z-index: 50;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* ============================================
   10. TESTIMONIALS SECTION
   ============================================ */
/* ============================================
   10. TESTIMONIALS SECTION - Scattered Collage
   ============================================ */
/* ============================================
   10. TESTIMONIALS SECTION - Vertical Floating Wall
   ============================================ */
.testimonials-section {
  background: var(--dark-bg);
  /* Dark background for popping glass effect */
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 800px;
  /* Fixed height for the wall window */
  display: flex;
  align-items: center;
  justify-content: center;
}

.wall-grid {
  display: flex;
  gap: 2rem;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.wall-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 45%;
}

.wall-col-left {
  animation: scrollUp 20s linear infinite;
}

.wall-col-right {
  animation: scrollDown 20s linear infinite;
}

.wall-col:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-33.33%);
  }

  /* Loop adjustment based on card count */
}

@keyframes scrollDown {
  0% {
    transform: translateY(-33.33%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Glass Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-card .client-info h4 {
  color: var(--white);
}

.glass-card .client-info span {
  color: rgba(255, 255, 255, 0.7);
}

.glass-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-style: italic;
}

.glass-card .rating {
  color: var(--secondary);
  /* Gold stars */
}

/* Client Info Styling */
.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.client-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.85rem;
}

.testimonial-card-compact p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-style: italic;
  flex-grow: 1;
}

.rating {
  font-size: 1rem;
  color: #ff9800;
  letter-spacing: 2px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--secondary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
}

.author-info h5 {
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 1rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--grey);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   11. CTA SECTION - Glass Morphic
   ============================================ */
.cta-section {
  background: var(--dark-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.15), transparent 70%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.glass-cta-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-left h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta.primary {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  border: none;
  box-shadow: 0 4px 20px rgba(255, 166, 0, 0.3);
}

.btn-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 166, 0, 0.5);
}

.btn-cta.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta i {
  font-size: 1.1rem;
}

.cta-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* ============================================
   12. FOOTER - Black Botanical Sketch Design
   ============================================ */
.footer {
  background: #fefefe;
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

/* Simple dotted botanical pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

/* Subtle corner accents */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* Top corners subtle shading */
    radial-gradient(ellipse 300px 200px at 5% 10%, rgba(0, 0, 0, 0.02) 0%, transparent 60%),
    radial-gradient(ellipse 300px 200px at 95% 10%, rgba(0, 0, 0, 0.02) 0%, transparent 60%),
    /* Bottom corners subtle shading */
    radial-gradient(ellipse 350px 250px at 10% 90%, rgba(0, 0, 0, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 350px 250px at 90% 90%, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* SVG Sketch Decorations (keeping from previous design) */
.footer-sketch-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  opacity: 0.3;
}

.footer-sketch-top path,
.footer-sketch-top circle {
  stroke: #000;
  fill: rgba(0, 0, 0, 0.08);
}

.footer-sketch-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  opacity: 0.2;
}

.footer-sketch-bottom path {
  stroke: #000;
}

.footer-flower-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  opacity: 0.15;
  z-index: 1;
}

.footer-flower-divider circle {
  stroke: #000;
  fill: rgba(0, 0, 0, 0.05);
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* Top Section with sketchy border */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.footer-top::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      transparent, transparent 8px,
      rgba(0, 0, 0, 0.05) 8px, rgba(0, 0, 0, 0.05) 12px);
}

.footer-newsletter {
  position: relative;
}

/* Sketchy decorative corner */
.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  border-top: 2px dashed rgba(0, 0, 0, 0.15);
  border-left: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.footer-newsletter h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #000, transparent);
  opacity: 0.2;
}

.footer-newsletter p {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #000;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  transform: translate(-1px, -1px);
}

.btn-subscribe {
  padding: 0.875rem 2rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.btn-subscribe:hover {
  background: #333;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-subscribe:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.footer-quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Sketchy corner decoration */
.contact-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: #000;
  color: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.contact-item .label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000;
}

/* Main Footer */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 350px;
  position: relative;
}

/* Hand-drawn circle sketch around about section */
.footer-about::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transform: rotate(15deg);
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  position: relative;
  display: inline-block;
}

/* Sketchy underline */
.footer-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      transparent, transparent 3px,
      rgba(0, 0, 0, 0.2) 3px, rgba(0, 0, 0, 0.2) 6px);
}

.footer-about p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.footer-social a:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translate(-2px, -2px) rotate(-5deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

/* Hand-drawn underline for headings */
.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: repeating-linear-gradient(90deg,
      #000 0px, #000 4px,
      transparent 4px, transparent 6px);
  opacity: 0.3;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 15px;
}

/* Hand-drawn bullet points */
.footer-column li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: #000;
  opacity: 0.4;
  font-size: 0.7rem;
  top: 3px;
}

.footer-column a {
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-column a:hover {
  color: #000;
  padding-left: 5px;
}

/* Footer Bottom with sketchy border */
.footer-bottom {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-bottom::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      transparent, transparent 8px,
      rgba(0, 0, 0, 0.05) 8px, rgba(0, 0, 0, 0.05) 12px);
}

.footer-bottom p {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #666;
  font-size: 0.875rem;
}

.footer-payment i {
  font-size: 1.5rem;
  color: #999;
  transition: all 0.3s ease;
}

.footer-payment i:hover {
  color: #000;
  transform: scale(1.1) rotate(-5deg);
}

/* ============================================
   13. CARDS & COMPONENTS
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 4px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
}

/* ============================================
   14. FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--grey);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   15. PAGE HEADERS
   ============================================ */
.page-header {
  background: var(--gradient-hero);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .container-full {
    padding: 0 var(--space-md);
  }
}

/* ============================================
   16. FLOATING WIDGETS
   ============================================ */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 9999;
}

.float-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

/* WhatsApp Float - Left */
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
  position: relative;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* AI Chatbot Float - Right */
.ai-chatbot-float {
  background: linear-gradient(135deg, #1a237e, #0d47a1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.ai-chatbot-float i {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
}

.ai-chatbot-float::after {
  content: 'AI';
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gradient-gold);
  color: var(--dark-bg);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 10px;
  border: 1px solid var(--dark-bg);
}

/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10000;
}

.chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: var(--dark-bg);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
}

.chat-header .bot-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: white;
}

.chat-header .bot-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.chat-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  max-width: 85%;
  line-height: 1.4;
}

.chat-msg.bot {
  background: white;
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-msg.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  padding: 1rem;
  background: white;
  border-top: 1px solid #eee;
  display: flex;
  gap: 0.5rem;
}

.chat-input-area input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  outline: none;
}

.chat-input-area button {
  background: var(--primary);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .chat-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 90px;
  }

  .floating-widgets {
    padding: 0 20px;
    bottom: 20px;
  }
}