/* 
  Lucky Digital Media - Premium Website Design Stylesheet
  Author: Antigravity AI
  Colors: Primary Red (#E31E24), White (#FFFFFF), Gray (#F7F7F7), Black (#111111)
  Fonts: Plus Jakarta Sans (Headings), Inter (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --primary: hsl(358, 81%, 50%); /* #E31E24 */
  --primary-hover: hsl(358, 81%, 42%);
  --primary-light: hsla(358, 81%, 50%, 0.08);
  --primary-glow: rgba(227, 30, 36, 0.4);
  
  --dark: hsl(220, 15%, 8%); /* #111317 */
  --dark-soft: hsl(220, 12%, 14%);
  --dark-light: hsl(220, 10%, 20%);
  
  --light: hsl(0, 0%, 97%); /* #F7F7F7 */
  --white: hsl(0, 0%, 100%);
  
  --text-dark: hsl(220, 15%, 10%); /* #111111 */
  --text-muted: hsl(220, 8%, 45%);
  --text-light: hsl(0, 0%, 95%);
  --text-light-muted: hsl(0, 0%, 75%);

  --border-color: hsl(220, 10%, 90%);
  --border-color-dark: hsl(220, 10%, 20%);
  
  /* Glassmorphism templates */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);

  --glass-dark-bg: rgba(17, 19, 23, 0.75);
  --glass-dark-border: rgba(255, 255, 255, 0.05);
  --glass-dark-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 10px 25px rgba(227, 30, 36, 0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Scroll padding for sticky header */
  scroll-behavior: smooth;
}

/* --- RESET & GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: hsl(220, 10%, 80%);
  border-radius: var(--radius-full);
  border: 2px solid var(--light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- REUSABLE UTILITIES & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--light);
}

.section-bg-dark {
  background-color: var(--dark);
  color: var(--text-light);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
}

.section-bg-dark .section-header p {
  color: var(--text-light-muted);
}

/* Red highlighted text in headings */
.highlight-red {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 30, 36, 0.35);
}

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

.btn-secondary:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Scroll progress bar indicator */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 0.1s ease-out;
}

/* --- STICKY GLASSMORPHISM HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.mobile-cta-btn {
  display: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

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

.header-cta {
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* --- DYNAMIC HERO SECTION --- */
.hero {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, hsla(358, 81%, 50%, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, hsla(220, 15%, 8%, 0.02) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  filter: blur(100px);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero h1 span.gradient {
  background: linear-gradient(to right, var(--primary), hsl(358, 80%, 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.subheading {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.hero-trust-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  width: 100%;
}

.hero-trust-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust-text span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-text span:not(:last-child)::after {
  content: '|';
  margin-left: 12px;
  color: var(--border-color);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-blob-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(358, 80%, 40%) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.3);
}

.hero-card-floating {
  position: absolute;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
  top: 40px;
  left: -20px;
  animation-delay: 0s;
}

.hero-card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 3s;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.hero-card-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.hero-card-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-svg-illustration {
  width: 80%;
  color: var(--white);
}

/* --- DUAL-BEHAVIOR IMAGE SLIDER --- */
.slider-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background-color: var(--light);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-container {
  display: flex;
  width: 300%; /* For 3 slides */
  transition: transform var(--transition-slow);
}

.slide {
  width: 33.3333%;
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background-color: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.slide-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}

.slide-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.slide-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--white);
}

.slide-desc {
  font-size: 16px;
  color: var(--text-light-muted);
  margin-bottom: 36px;
}

.slide-image-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-in-out;
}

.slide:hover .slide-img {
  transform: scale(1.05);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-btn-prev {
  left: 24px;
}

.slider-btn-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 28px;
}

/* --- ABOUT, VISION & MISSION --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary);
}

.about-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
}

.stars i {
  font-size: 16px;
}

.about-rating-text {
  font-weight: 700;
  font-size: 14px;
}

.about-quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-author-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.about-author-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.about-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Vision & Mission grid styling */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}

.vm-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.vm-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.vm-card h4 {
  font-size: 20px;
  font-weight: 700;
}

.vm-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li i {
  color: var(--primary);
  font-size: 14px;
}

.service-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-btn i {
  transition: transform var(--transition-fast);
}

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

.service-card:hover .service-btn i {
  transform: translateX(4px);
}

/* --- PRICING PACKAGES --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 48px 40px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Highlight Featured (Growth) Card */
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

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

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-name {
  color: var(--primary);
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: baseline;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

.pricing-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 30px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-features li i {
  color: var(--primary);
  font-size: 16px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-cta {
  width: 100%;
}

/* --- WHY CHOOSE US & COUNTER STATS --- */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.why-card {
  display: flex;
  gap: 20px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-info h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stats Counter Layout */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- GOOGLE REVIEW TESTIMONIALS --- */
.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  width: 500%; /* For 5 reviews */
  transition: transform var(--transition-normal);
}

.testimonial-card {
  width: 20%;
  padding: 20px 40px;
  flex-shrink: 0;
}

.google-review-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.google-watermark {
  position: absolute;
  top: 36px;
  right: 36px;
  opacity: 0.15;
  font-size: 32px;
  color: var(--dark);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background-color: #4285F4; /* Google Blue */
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info h4 {
  font-size: 16px;
  font-weight: 700;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.verified-badge {
  color: #0F9D58; /* Google Green */
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F4B400; /* Google Yellow */
  font-size: 18px;
}

.review-body {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

/* Testimonials Controller */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary);
  width: 24px;
}

/* --- CONSULTATION FORM SECTION --- */
.consultation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.consultation-info {
  display: flex;
  flex-direction: column;
}

.consultation-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.consultation-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-details p {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* Interactive Modern Form Layout */
.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--light);
  color: var(--text-dark);
  font-size: 15px;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

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

.form-submit-btn {
  width: 100%;
}

/* Form success message popup */
.form-success-alert {
  display: none;
  background-color: #e6f4ea;
  border: 1px solid #137333;
  color: #137333;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 600;
  align-items: center;
  gap: 12px;
}

/* --- FAQ ACCORDION SECTION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 20px;
  transition: var(--transition-normal);
}

.faq-header:hover {
  background-color: var(--light);
}

.faq-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--light);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item.active .faq-header h3 {
  color: var(--primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
  padding: 0 32px 24px 32px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- POLICY & FOOTER SECTION --- */
.footer {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.6;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--dark-soft);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-light-muted);
}

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

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light-muted);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-item strong {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-light-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-light-muted);
}

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

/* --- INTERACTIVE FLOATING ELEMENTS --- */
/* Pulse bounce animation for WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Back to Top Widget */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--white);
  color: var(--dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.back-to-top:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* --- VIEWPORT ANIMATIONS (Intersection Observer) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(227, 30, 36, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
  }
}

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

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- MOBILE RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 46px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  /* For pricing: let full premium scale nicely */
  .pricing-card.premium {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .section-header p {
    font-size: 15px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Header Mobile Drawer & Logo spacing */
  .header {
    padding: 14px 0;
  }
  .logo {
    font-size: 19px;
  }
  .hamburger {
    display: block;
  }
  .header-cta {
    display: none; /* Hide in navbar on mobile, show in menu */
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right var(--transition-normal);
    z-index: 1005;
  }
  .nav.open {
    right: 0;
  }
  .mobile-cta-btn {
    display: inline-flex !important;
    width: 100%;
    margin-top: 15px;
  }
  
  /* Hero section mobile (Overflow Fixes) */
  .hero {
    padding: 110px 0 60px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero p.subheading {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero-ctas {
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-trust-text {
    justify-content: center;
    font-size: 13px;
    gap: 10px;
  }
  .hero-trust-text span::after {
    display: none !important; /* Hide separator on mobile */
  }
  .hero-blob-card {
    height: 280px;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-card-floating {
    display: none !important; /* Hide floating absolute cards to prevent mobile layout breakages */
  }
  
  /* Slider Section Mobile Refinements (No Arrow Overlaps) */
  .slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .slide-content {
    padding: 30px 20px 40px 20px;
    text-align: center;
    align-items: center;
  }
  .slide-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .slide-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .slide-image-container {
    height: 220px;
  }
  .slider-btn {
    display: none !important; /* Hide side arrows on mobile to prevent text overlapping */
  }
  .slider-dots {
    bottom: 12px;
  }
  
  /* About Us Mobile Padding */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-card {
    padding: 24px;
  }
  .about-quote {
    font-size: 17px;
    margin-bottom: 16px;
  }
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-card {
    padding: 24px;
  }
  
  /* Services Stack (Full Mobile Readability) */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 30px 24px;
  }
  
  /* Pricing Grid Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-card.premium {
    grid-column: span 1;
  }
  .pricing-card {
    padding: 32px 24px;
  }
  
  /* Why Choose Us & Counters Mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card {
    gap: 16px;
  }
  
  /* Consultation Form Stack */
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-card {
    padding: 24px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  /* Testimonials Mobile Scale */
  .testimonial-card {
    padding: 10px 5px;
  }
  .google-review-box {
    padding: 28px 20px;
  }
  .review-body {
    font-size: 15px;
  }
  
  /* FAQ Accordion Compact Details */
  .faq-header {
    padding: 16px 20px;
  }
  .faq-header h3 {
    font-size: 16px;
  }
  .faq-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }
  
  /* Footer Stack */
  .footer {
    padding: 60px 0 90px 0; /* 90px bottom padding creates a perfect safe-zone for mobile floating widgets! */
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer-column h4 {
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 24px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }
  .footer-bottom-links a {
    white-space: nowrap; /* Prevents word wrapping (e.g. Privacy and Policy on separate lines) */
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero-blob-card {
    height: 240px;
    max-width: 280px;
  }
  .slide-title {
    font-size: 22px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .back-to-top {
    left: 20px;
    bottom: 20px;
  }
  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

/* --- POLICY CONTENT PAGES --- */
.policy-content-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.policy-content-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 20px 0;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.policy-content-box h2:first-of-type {
  margin-top: 0;
}

.policy-content-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.policy-content-box ul {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-content-box ul li {
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.policy-content-box ul li::before {
  content: '\f058'; /* FontAwesome check-circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .policy-content-box {
    padding: 36px 24px;
    margin-top: 24px;
  }
  .policy-content-box h2 {
    font-size: 19px;
    margin: 32px 0 16px 0;
  }
}


