/**
 * WPFixHub - Premium Modern CSS
 * Advanced UI with Glassmorphism, Gradients, and Animations
 */

/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
  --primary-color: #1E4AFF;
  --primary-dark: #0D3AD6;
  --primary-light: #4D6FFF;
  --secondary-color: #00DBFF;
  --secondary-dark: #00B8D9;
  --accent-color: #FFB703;
  --success-color: #10b981;
  --warning-color: #FFB703;
  --danger-color: #ef4444;

  --text-dark: #334155;
  --text-light: #64748B;
  --text-muted: #64748B;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #F8FAFF;
  --bg-alt: #EEF2FF;
  --bg-gradient: linear-gradient(135deg, #1E4AFF 0%, #00DBFF 100%);
  --bg-gradient-2: linear-gradient(135deg, #FFB703 0%, #FF8A00 100%);
  
  --card-border: #E5E7EB;
  --placeholder-color: #94A3B8;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 6px 20px rgba(0, 0, 0, 0.08);

  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-lg: 30px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Mosaic Background Pattern - Subtle for human comfort */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(99, 102, 241, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(236, 72, 153, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(20, 184, 166, 0.04) 0%,
      transparent 50%
    );
}

/* Dotted Pattern Overlay - Minimal for reduced distraction */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 0.5em;
}

.highlight {
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   GLASSMORPHISM CARDS
======================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 230, 235, 0.5);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header-area {
  position: relative;
  z-index: 1000;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.logo-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 18px !important;
  margin: 0 2px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--primary-color);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.modern-dropdown {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px;
  margin-top: 10px;
}

.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(236, 72, 153, 0.1)
  );
  color: var(--primary-color);
  transform: translateX(5px);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn-hire {
  padding: 12px 25px;
  font-size: 14px;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  color: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
  }
  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  display: flex;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons .btn {
  margin: 10px 10px 10px 0;
}

.hero-image {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  background: var(--bg-white);
  border-radius: 50%;
  padding: 15px;
  box-shadow: var(--shadow-md);
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* ========================================
   SECTION STYLES
======================================== */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   COUNTER SECTION
======================================== */
.counter-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.counter-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.counter-icon {
  font-size: 56px;
  margin-bottom: 15px;
  opacity: 0.95;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.counter-number {
  font-size: 56px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.counter-plus {
  font-size: 42px;
  font-weight: 700;
  margin-left: 4px;
  opacity: 0.9;
}

.counter-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   SERVICE CARDS
======================================== */
.service-card {
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(230, 230, 235, 0.5);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

/* Different solid background colors for service categories */
.service-card.bg-blue {
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
  border-color: #c7d2fe;
}

.service-card.bg-green {
  background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
  border-color: #a7f3d0;
}

.service-card.bg-orange {
  background: linear-gradient(135deg, #fed7aa 0%, #fff7ed 100%);
  border-color: #fdba74;
}

.service-card.bg-purple {
  background: linear-gradient(135deg, #e9d5ff 0%, #faf5ff 100%);
  border-color: #d8b4fe;
}

.service-card.bg-pink {
  background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%);
  border-color: #f9a8d4;
}

.service-card.bg-cyan {
  background: linear-gradient(135deg, #cffafe 0%, #f0fdfa 100%);
  border-color: #a5f3fc;
}

.service-card.bg-blue:hover {
  background: linear-gradient(135deg, #c7d2fe 0%, #e0e7ff 100%);
  transform: translateY(-8px);
}

.service-card.bg-green:hover {
  background: linear-gradient(135deg, #a7f3d0 0%, #d1fae5 100%);
  transform: translateY(-8px);
}

.service-card.bg-orange:hover {
  background: linear-gradient(135deg, #fdba74 0%, #fed7aa 100%);
  transform: translateY(-8px);
}

.service-card.bg-purple:hover {
  background: linear-gradient(135deg, #d8b4fe 0%, #e9d5ff 100%);
  transform: translateY(-8px);
}

.service-card.bg-pink:hover {
  background: linear-gradient(135deg, #f9a8d4 0%, #fce7f3 100%);
  transform: translateY(-8px);
}

.service-card.bg-cyan:hover {
  background: linear-gradient(135deg, #a5f3fc 0%, #cffafe 100%);
  transform: translateY(-8px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: white;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   PRICING CARDS
======================================== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: pulse 10s ease-in-out infinite;
}

.pricing-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: pulse 10s ease-in-out infinite reverse;
}

.pricing-card {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.12);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 3px solid var(--primary-color);
  position: relative;
  transform: scale(1.05);
}

.pricing-card.popular::before {
  transform: scaleX(1);
  height: 8px;
}

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: white;
  padding: 8px 30px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
  animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.pricing-header h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin: 25px 0;
  padding: 25px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 20px;
  border: 2px dashed rgba(102, 126, 234, 0.2);
  position: relative;
}

.pricing-price::before {
  content: '💰';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  background: white;
  padding: 5px 15px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 35px 0;
  text-align: left;
}

.pricing-features li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  font-size: 15px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  padding-left: 10px;
  color: var(--primary-color);
}

.pricing-features li i {
  color: var(--success-color);
  margin-right: 15px;
  font-size: 18px;
  min-width: 20px;
  background: rgba(16, 185, 129, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pricing-features li:hover i {
  transform: scale(1.2);
  background: rgba(16, 185, 129, 0.2);
}

.pricing-card .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.pricing-card .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-card .btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.pricing-card .btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pricing-card .btn-success:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* ========================================
   FOOTER
======================================== */
.footer-area {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-widget {
  margin-bottom: 30px;
}

.widget-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-text {
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-icon.facebook {
  background: #1877f2;
}
.social-icon.youtube {
  background: #ff0000;
}
.social-icon.linkedin {
  background: #0077b5;
}
.social-icon.github {
  background: #333;
}
.social-icon.upwork {
  background: #14a800;
}

.social-icon:hover {
  transform: translateY(-3px) rotate(15deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.15);
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-menu a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
}

.copyright-text a {
  color: var(--primary-color);
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal-links a:hover {
  color: white;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 42px;
  }
  .section-title {
    font-size: 36px;
  }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
  }
  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .hero-section {
    padding: 80px 0 60px;
  }
  section {
    padding: 60px 0;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .back-to-top {
    bottom: 85px;
    right: 20px;
  }
}
/* ========================================
   LEGAL PAGES
======================================== */
.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(102, 126, 234, 0.2);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 25px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 25px;
  padding-left: 25px;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 10px;
  padding-left: 10px;
}

.legal-content ul li {
  position: relative;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: -15px;
  color: var(--primary-color);
  font-weight: bold;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.legal-content strong {
  color: var(--text-color);
  font-weight: 700;
}

.legal-content .alert {
  border-radius: 15px;
  border: none;
  padding: 20px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.legal-content .alert-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  color: #1e40af;
}

.legal-content .alert-warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  color: #92400e;
}

.legal-content .alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #065f46;
}

.legal-content .text-muted {
  color: #6b7280 !important;
  font-size: 14px;
}
/* ========================================
   REVIEWS SECTION (HOME PAGE)
======================================== */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.title-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin-top: 10px;
}

.review-card-home {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.08);
}

.reviewer-info {
  margin-bottom: 20px;
}

.reviewer-name {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.reviewer-company {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.review-stars i {
  color: #fbbf24;
  font-size: 20px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

.reviews-swiper-home {
  padding: 20px 0 50px;
}

.reviews-swiper-home .swiper-pagination {
  bottom: 0;
}

.reviews-swiper-home .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.reviews-swiper-home .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  width: 35px;
  border-radius: 6px;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  padding: 18px 45px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-google-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-google-reviews:hover::before {
  left: 100%;
}

.btn-google-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.2);
  color: white;
}

.btn-google-reviews i {
  font-size: 22px;
  margin-right: 12px;
}

@media (max-width: 991px) {
  .review-card-home {
    min-height: 280px;
    padding: 30px 25px;
  }
  
  .reviewer-name {
    font-size: 20px;
  }
  
  .review-text {
    font-size: 15px;
  }
  
  .btn-google-reviews {
    padding: 15px 35px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 60px 0;
  }
  
  .review-card-home {
    min-height: auto;
  }
  
  .btn-google-reviews {
    width: 100%;
    justify-content: center;
  }
}

.review-screenshot {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.review-card-home:hover .screenshot-img {
  transform: scale(1.02);
}

.btn-google-maps {
  display: inline-flex;
  align-items: center;
  padding: 18px 45px;
  background: linear-gradient(135deg, #EA4335, #FBBC05);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-google-maps::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-google-maps:hover::before {
  left: 100%;
}

.btn-google-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.2);
  color: white;
}

.btn-google-maps i {
  font-size: 22px;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .btn-google-maps {
    width: 100%;
    justify-content: center;
    padding: 15px 35px;
    font-size: 16px;
  }
}

/* ========================================
   BLOG THUMBNAILS
======================================== */
.blog-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  height: 100%;
  min-height: 250px;
}

.blog-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 250px;
}

.glass-card:hover .blog-thumbnail {
  transform: scale(1.1);
}

.blog-thumbnail-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 74, 255, 0.1), rgba(0, 219, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover .blog-thumbnail-wrapper::after {
  opacity: 1;
}

/* ========================================
   ENHANCED SERVICE CARD HOVER EFFECTS
======================================== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 74, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.service-card:hover::before {
  left: 100%;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.service-card:hover .service-icon::after {
  width: 100px;
  height: 100px;
}

/* Service card with background image on hover */
.glass-card.service-card-enhanced {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.glass-card.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  z-index: 0;
}

.glass-card.service-card-enhanced:hover::before {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

/* Ensure all content is above the background */
.glass-card.service-card-enhanced > * {
  position: relative;
  z-index: 1;
}

.glass-card.service-card-enhanced .row,
.glass-card.service-card-enhanced .col-md-3,
.glass-card.service-card-enhanced .col-md-9,
.glass-card.service-card-enhanced h3,
.glass-card.service-card-enhanced p,
.glass-card.service-card-enhanced .btn {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-thumbnail-wrapper {
    border-radius: 20px 20px 0 0;
    min-height: 200px;
  }
  
  .blog-thumbnail {
    min-height: 200px;
  }
}

/* ========================================
   PRODUCT & BLOG CARD HOVER EFFECTS
======================================== */
.glass-card.p-0 {
  overflow: hidden;
  position: relative;
}

.glass-card.p-0 img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card.p-0:hover img {
  transform: scale(1.15);
}

.glass-card.p-0::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(30, 74, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-card.p-0:hover::after {
  opacity: 1;
}

/* Product card specific */
.glass-card.p-0 .price-tag {
  position: relative;
  z-index: 2;
}

.glass-card.p-0 .btn-group {
  position: relative;
  z-index: 2;
}

/* Swiper card enhancements */
.swiper-slide .glass-card {
  height: 100%;
}

.swiper-slide .glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
