/* =====================================================
   CODEPULSE WEBSITE - COMPLETE STYLING
   Dark Blue/Purple Theme with Proper Structure
=====================================================*/

/* ===== CSS VARIABLES ===== */
:root {
  --primary-blue: #1e88e5;
  --primary-purple: #7c4dff;
  --accent-red: #ff6b6b;
  --whatsapp-green: #25D366;
  --success-green: #4ade80;
  --dark-bg: #0a0a2a;
  --darker-bg: #050518;
  --medium-bg: #1a0033;
  --light-bg: rgba(255, 255, 255, 0.1);
  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #b0b0b0;
  --gradient-main: linear-gradient(135deg, #1e88e5, #7c4dff);
  --gradient-dark: linear-gradient(135deg, #0a0a2a, #1a0033, #0d1b2a);
  --gradient-whatsapp: linear-gradient(135deg, #25D366, #128C7E);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 40px rgba(124, 77, 255, 0.3);
  --glow: 0 0 20px rgba(124, 77, 255, 0.5);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-white);
  background: var(--gradient-dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Animation */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(124, 77, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(10, 10, 42, 0.3) 0%, transparent 50%);
  z-index: -1;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { 
    background-position: 0% 0%, 100% 100%, 50% 50%, 25% 75%; 
  }
  50% { 
    background-position: 100% 100%, 0% 0%, 75% 25%, 50% 50%; 
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(10, 10, 42, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(124, 77, 255, 0.3);
  height: 85px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.nav-left-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  border-radius: 50%;
  box-shadow: var(--glow);
  width: 55px;
  height: 55px;
  border: 2px solid var(--primary-purple);
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary-purple);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.nav-shortcuts {
  display: flex;
  gap: 25px;
  background: rgba(124, 77, 255, 0.1);
  padding: 12px 25px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.nav-shortcuts a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
}

.nav-shortcuts a:hover {
  color: var(--text-white);
  background: rgba(124, 77, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-purple);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 85px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 42, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  border-top: 2px solid rgba(124, 77, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text-white);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: rgba(124, 77, 255, 0.1);
}

.mobile-menu a:hover {
  background: var(--gradient-main);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 77, 255, 0.4);
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background: 
    radial-gradient(circle at 30% 30%, rgba(30, 136, 229, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(124, 77, 255, 0.2) 0%, transparent 50%);
  color: var(--text-white);
  text-align: center;
  padding: 180px 40px 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.main-heading {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(124, 77, 255, 0.5);
  margin-bottom: 25px;
}

.lead {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}

.btn::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: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--text-white);
  box-shadow: 0 5px 25px rgba(124, 77, 255, 0.5);
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 35px rgba(124, 77, 255, 0.8);
}

.btn-outline {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-purple);
  color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.6);
  transform: scale(1.05) translateY(-3px);
}

.btn-whatsapp {
  background: var(--gradient-whatsapp);
  color: var(--text-white);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.8);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section h2 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 15px;
}

.services-section > .container > p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: var(--text-light);
  text-align: center;
}

.services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 14px 28px;
  border: 2px solid rgba(124, 77, 255, 0.3);
  border-radius: 30px;
  background: rgba(124, 77, 255, 0.1);
  color: var(--text-light);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-main);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 77, 255, 0.4);
  border-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  perspective: 1000px;
  width: 100%;
  max-width: 320px;
  height: 380px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.card-front {
  background: var(--light-bg);
  backdrop-filter: blur(15px);
  color: var(--text-white);
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.card-back {
  background: var(--gradient-main);
  color: var(--text-white);
  transform: rotateY(180deg);
  justify-content: space-between;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-white);
  font-weight: 700;
}

.card-front p {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
}

.badge {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
}

.card-back p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-back ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.card-back li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.card-back li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.card-back button {
  background: var(--text-white);
  color: var(--primary-purple);
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-back button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* NFC Image in Card Back */
.nfc-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===== TRUST & LOCAL SECTION ===== */
.trust-local-section {
  background: var(--gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.trust-local-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.trust-local-section .container {
  position: relative;
  z-index: 2;
}

.trust-local-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-white);
  text-align: center;
  font-weight: 800;
}

.trust-local-section > .container > p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: var(--text-light);
  text-align: center;
}

.local-areas {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.area-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  border-radius: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 77, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.12);
}

.area-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-purple);
}

.area-card h3 {
  margin-bottom: 15px;
  color: var(--text-white);
  font-size: 1.5rem;
}

.area-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 0;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trust-cta {
  text-align: center;
  margin-top: 40px;
}

.trust-cta .btn {
  font-size: 1.3rem;
  padding: 20px 45px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 800;
}

.process-section > .container > p {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: var(--text-light);
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(124, 77, 255, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.timeline-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-main);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.timeline-number:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.6);
}

.timeline-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-white);
  font-weight: 700;
}

.timeline-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* ===== FORMS SECTION ===== */
.forms-wrapper {
  padding: 100px 0;
  background: var(--gradient-dark);
}

.forms-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
}

.form-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: var(--light-bg);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.form-container:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.form-container h3 {
  text-align: center;
  color: var(--text-white);
  font-size: 2.2rem;
  margin-bottom: 35px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--primary-purple);
  z-index: 2;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  color: var(--text-white);
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 18px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%237c4dff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 8px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: 0;
  left: 45px;
  font-size: 0.9rem;
  color: var(--primary-purple);
  font-weight: 700;
  background: var(--dark-bg);
}

.form-container button {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-primary-btn {
  background: var(--gradient-main);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

.form-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124, 77, 255, 0.6);
}

.form-success-btn {
  background: var(--gradient-whatsapp);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.form-success-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.form-success {
  color: var(--success-green);
  margin-top: 15px;
  display: none;
  font-weight: 600;
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h3 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--text-white);
  background: none;
  -webkit-text-fill-color: var(--text-white);
}

.contact-grid {
  display: grid;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-item p {
  margin: 0;
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--text-white);
  font-weight: 700;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
}

.contact-item a.whatsapp {
  color: var(--whatsapp-green);
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.contact-item a.whatsapp:hover {
  color: #4ade80;
  text-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}

.contact-item a:hover {
  text-decoration: underline;
  transform: translateY(-2px);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 15px;
  font-weight: 600;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.operating-hours {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 450px;
  margin: 40px auto 0;
}

.operating-hours h4 {
  margin-bottom: 15px;
  color: var(--text-white);
  font-size: 1.4rem;
}

.operating-hours p {
  margin: 8px 0;
  font-size: 1.1rem;
  color: var(--text-light);
}

.operating-hours .closed {
  color: var(--accent-red);
}

/* ===== FAQ SECTION ===== */
.faqs-section {
  padding: 100px 0;
  background: var(--gradient-dark);
}

.faqs-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faqs-section h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 800;
}

.faqs-section > .container > p {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: var(--text-light);
  text-align: center;
}

.faqs-accordion {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--light-bg);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 77, 255, 0.2);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--gradient-main);
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 25px 30px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-hover);
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer[hidden] {
  display: block;
  max-height: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  padding: 30px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
}

/* ============================================================
   🌌 ELITE FUTURISTIC FOOTER — "BEST POSSIBLE FOOTER" EDITION
   Designed to match your neon/purple/glassmorphism aesthetic
=============================================================== */

/* Main Footer Wrapper */
.footer {
  position: relative;
  padding: 90px 0 40px;
  background: rgba(20, 20, 30, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

/* Animated Nebula Glow Behind Footer */
.footer::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(143,0,255,0.35), transparent 70%);
  filter: blur(140px);
  animation: footerGlow 9s ease-in-out infinite alternate;
}

.footer::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(0,163,255,0.3), transparent 70%);
  filter: blur(160px);
  animation: footerGlow2 11s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from { transform: scale(1); opacity: 0.6; }
  to   { transform: scale(1.2); opacity: 0.8; }
}
@keyframes footerGlow2 {
  from { transform: scale(1.1); opacity: 0.5; }
  to   { transform: scale(1.35); opacity: 0.9; }
}

/* Floating Particles */
.footer .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(2px);
  animation: floatParticles 10s infinite ease-in-out;
}

.footer .particle:nth-child(1) { top: 30%; left: 15%; animation-delay: 0s; }
.footer .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.3s; }
.footer .particle:nth-child(3) { top: 75%; left: 30%; animation-delay: 2.7s; }
.footer .particle:nth-child(4) { top: 20%; left: 65%; animation-delay: 4.1s; }
.footer .particle:nth-child(5) { top: 50%; left: 45%; animation-delay: 6s; }

@keyframes floatParticles {
  0% { transform: translateY(0px) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.4); opacity: 0.9; }
  100% { transform: translateY(0px) scale(1); opacity: 0.5; }
}

/* Footer Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  z-index: 2;
  position: relative;
}

/* Footer Titles */
.footer h4 {
  color: #fff;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple), #00b7ff);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(106,13,173,0.8);
}

/* Footer Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #ccc;
  font-size: 0.97rem;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
}

.footer ul li a:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--primary-purple);
  transform: translateX(6px);
}

/* Newsletter Box */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.footer-newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-newsletter button {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--primary-purple);
  color: #fff;
  border: none;
  transition: 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: #8a00ff;
  box-shadow: 0 0 12px #8a00ff;
}

/* Social Icons */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
  background: var(--primary-purple);
  box-shadow: 0 0 15px var(--primary-purple);
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ===========================
   General Styles
   =========================== */
.purple-input {
  border: 2px solid purple;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: purple;
}

.purple-input::placeholder {
  color: #800080cc;
}

/* WhatsApp inline logo */
#whatsappBtn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 8px;
  transition: transform 0.2s ease-in-out;
}

#whatsappBtn img:hover {
  transform: scale(1.2);
}

/* Floating WhatsApp button (if you use that version) */


#whatsappBtn:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* ===========================
   Mobile Optimisations
   =========================== */
@media (max-width: 480px) {
  /* Inputs shrink slightly on small screens */
  .purple-input {
    padding: 8px;
    font-size: 14px;
  }

  /* Inline WhatsApp logo scales down */
  #whatsappBtn img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }

  /* Floating button shrinks and moves closer to edges */
  #whatsappBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
  }
}


/* ===== STICKY CTA ===== */
.sticky-quote {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.5);
  text-decoration: none;
  font-weight: 700;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.sticky-quote:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.7);
}

/* ===== BLOG STYLES ===== */
.blog-header {
  background: var(--gradient-dark);
  color: var(--text-white);
  padding: 120px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(124, 77, 255, 0.15) 0%, transparent 50%);
  z-index: -1;
}

.blog-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-tagline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.blog-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.blog-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: rgba(124, 77, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.blog-nav a:hover {
  background: var(--gradient-main);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 77, 255, 0.4);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post {
  background: var(--light-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(124, 77, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.blog-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.post-category {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-post h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  line-height: 1.3;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-reading-time {
  color: var(--whatsapp-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.post-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-main);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 3rem;
}

.blog-sidebar {
  background: var(--light-bg);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(124, 77, 255, 0.2);
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-widget h3 {
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-purple);
  padding-bottom: 0.5rem;
}

.recent-posts {
  list-style: none;
}

.recent-posts li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(124, 77, 255, 0.2);
}

.recent-posts a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-posts a:hover {
  color: var(--primary-purple);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.category-tag {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-tag:hover {
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 1rem;
  border: 2px solid rgba(124, 77, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1rem;
}

.newsletter-btn {
  padding: 1rem;
  background: var(--gradient-main);
  color: var(--text-white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 3rem auto;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border: 2px solid var(--primary-purple);
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(124, 77, 255, 0.1);
}

.back-home:hover {
  background: var(--primary-purple);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .local-areas {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
    height: 80px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .nav-shortcuts {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .forms-container {
    flex-direction: column;
    align-items: center;
  }

  .form-container {
    width: 100%;
    max-width: 400px;
  }

  .local-areas {
    flex-direction: column;
    align-items: center;
  }

  .area-card {
    width: 100%;
    max-width: 400px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .sticky-quote {
    right: 15px;
    bottom: 15px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-sidebar {
    position: static;
  }
  
  .blog-header h1 {
    font-size: 2.5rem;
  }
  
  .blog-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-nav a {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .services-section h2,
  .trust-local-section h2,
  .process-section h2,
  .contact-section h3,
  .faqs-section h2,
  .blog-header h1 {
    font-size: 2.2rem;
  }

  .card-front,
  .card-back {
    padding: 25px 20px;
  }

  .timeline-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .form-container {
    padding: 30px 20px;
  }

  .contact-item p {
    font-size: 1rem;
  }

  .sticky-quote {
    right: 10px;
    bottom: 10px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .blog-post {
    padding: 2rem;
  }
  
  .blog-sidebar {
    padding: 2rem;
  }
}