/* ===== GLOBAL STYLES ===== */
:root {
  --primary: #8a4fff;
  --primary-dark: #6a2ce8;
  --primary-light: #f0e6ff;
  --secondary: #ff9f43;
  --dark: #2a2a4a;
  --light: #ffffff;
  --gray: #f8f9fa;
  --text: #5a5a7a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

/* ===== HEADER STYLES ===== */
header {
  background-color: var(--light);
  box-shadow: 0 2px 20px rgba(138, 79, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== LOGO STYLES ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-right: 0.5rem;
}

.logo-text {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--dark);
  font-weight: 600;
}

/* ===== NAVIGATION STYLES ===== */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.8rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
  border-radius: 3px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== BUTTON STYLES ===== */
.cta-button {
  background-color: var(--primary);
  color: var(--light);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 2rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(138, 79, 255, 0.3);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 79, 255, 0.4);
}

.secondary-button {
  background-color: transparent;
  color: var(--primary);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.secondary-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== MOBILE MENU STYLES ===== */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--dark);
  transition: all 0.3s;
}

.hamburger:hover {
  color: var(--primary);
}

/* ===== HERO SECTION STYLES ===== */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 230, 255, 0.95) 100%), 
              url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1453&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  margin-top: 70px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text);
}

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

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
  padding: 80px 20px;
  background-color: #faf5ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #2a2a4a;
  margin-bottom: 15px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: #8a4fff;
  border-radius: 2px;
}

.credentials {
  color: #6a2ce8;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #5a5a7a;
}

.stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

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

.number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #8a4fff;
}

.label {
  font-size: 0.9rem;
  color: #5a5a7a;
}

.about-image {
  position: relative;
  flex: 1;
}

.profile-pic {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(138, 79, 255, 0.15);
  border: 8px solid white;
}

.certification-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #6a2ce8;
}

.certification-badge i {
  color: #ff9f43;
}

/* ===== CONSULTATION PACKAGES SECTION ===== */
.consultation-packages {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #2a2a4a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header .subheading {
  font-size: 1.1rem;
  color: #5a5a7a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border: 2px solid #8a4fff;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #8a4fff;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(138, 79, 255, 0.3);
  z-index: 1;
}

.package-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #f5f5f5;
}

.package-header h3 {
  font-size: 1.5rem;
  color: #2a2a4a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #8a4fff;
  margin-bottom: 1rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #5a5a7a;
}

.package-features {
  padding: 1.5rem 2rem;
  min-height: 300px;
}

.package-features ul {
  list-style: none;
}

.package-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5a5a7a;
}

.package-features i.fa-check {
  color: #8a4fff;
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.package-footer {
  padding: 1.5rem 2rem;
  text-align: center;
}

.package-button {
  background: #8a4fff;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.9rem;
}

.package-button:hover {
  background: #6a2ce8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 79, 255, 0.3);
}

.featured-button {
  background: #6a2ce8;
}

.featured-button:hover {
  background: #5a1cd8;
}

.discount-info {
  margin-top: 3rem;
  padding: 1.5rem;
  background: #f0e6ff;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.discount-info h4 {
  color: #6a2ce8;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

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

.discount-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #5a5a7a;
}

.discount-info i {
  color: #8a4fff;
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

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

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  /* Header adjustments */
  .header-container {
    padding: 0.8rem 1.5rem;
  }

  /* Mobile menu styles */
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    transition: left 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1.8rem 0;
  }

  /* Button adjustments */
  .cta-button {
    margin: 2rem 0 0;
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Logo adjustments */
  .logo-text {
    font-size: 1.3rem;
  }

  /* Hero section adjustments */
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button, .secondary-button {
    width: 100%;
    max-width: 250px;
  }

  /* About section adjustments */
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    order: 2;
    text-align: center;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .stats {
    justify-content: center;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .profile-pic {
    max-width: 320px;
  }

  /* Packages section adjustments */
  .consultation-packages {
    padding: 3rem 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .package-features {
    min-height: auto;
  }
  
  .discount-info {
    padding: 1rem;
    margin-top: 2rem;
  }

  /* WhatsApp button adjustments */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .package-header h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 1.8rem;
  }
  
  .package-features li {
    font-size: 0.9rem;
  }
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: modalFadeIn 0.4s;
}

.modal-subtitle {
  color: var(--text);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.booking-steps {
  margin: 30px 0;
}

.step {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed var(--primary-light);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.terms-section {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--primary-light);
  border-radius: 10px;
}

.terms-toggle {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s;
}

.terms-toggle:hover {
  background-color: rgba(138, 79, 255, 0.1);
}

.terms-toggle::before {
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
}

.terms-toggle.active::before {
  content: "-";
}

.terms-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(138, 79, 255, 0.3);
  display: none;
}

.terms-content h5 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.terms-content ol {
  padding-left: 20px;
  margin: 15px 0;
}

.terms-content li {
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
}

.terms-content p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.terms-content.hidden {
  display: none;
}

.terms-content.visible {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .modal-content {
    padding: 25px;
    margin: 3% auto;
    max-height: 94vh;
  }
  
  .step h4 {
    font-size: 1.1rem;
  }
  
  .terms-section {
    padding: 15px;
  }
  
  .terms-content ol {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 20px;
    border-radius: 10px;
  }
  
  .modal-subtitle {
    font-size: 1rem;
  }
  
  .step {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .terms-content li {
    font-size: 0.95rem;
  }
}

/* Payment Details Styles */
/* Payment Section Styles */
.payment-details {
  background: var(--primary-light);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.qr-section, .upi-details {
  flex: 1;
  min-width: 250px;
}

.qr-code {
  width: 100%;
  max-width: 200px;
  height: auto;
  border: 1px solid #eee;
  border-radius: 8px;
  margin: 10px 0;
  display: block;
}

.qr-note {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 5px;
}

.or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--primary);
  opacity: 0.3;
}

.or-divider span {
  padding: 0 15px;
  color: var(--primary-dark);
  font-weight: 600;
}

.payment-apps {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.payment-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.payment-logo:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .payment-methods {
    flex-direction: column;
    gap: 20px;
  }
  
  .qr-code {
    max-width: 180px;
    margin: 10px auto;
  }
  
  .or-divider {
    margin: 15px 0;
  }
  
  .payment-apps {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payment-logo {
    height: 35px;
  }
  
  .qr-section, .upi-details {
    min-width: 100%;
  }
}

/* Enhanced Proceed to Booking Button */
#bookNowBtn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 79, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}

#bookNowBtn:not(.disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 79, 255, 0.5);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #5a1cd8 100%);
}

#bookNowBtn:not(.disabled):active {
  transform: translateY(1px);
}

#bookNowBtn::after {
  content: "→";
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

#bookNowBtn:hover::after {
  transform: translateX(3px);
}

#bookNowBtn.disabled {
  background: #e0e0e0 !important;
  color: #a0a0a0 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none !important;
}

/* Pulse animation for enabled state */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(138, 79, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(138, 79, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 79, 255, 0); }
}

#bookNowBtn:not(.disabled) {
  animation: pulse-glow 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #bookNowBtn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f9fa;
  padding: 80px 20px;
}

.testimonials .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 50px;
  font-weight: 700;
}

.testimonial {
  background-color: #ffffff;
  border-left: 5px solid var(--primary);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial .client-name {
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .testimonials {
    padding: 50px 15px;
  }

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

  .testimonial {
    padding: 20px;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .testimonial .client-name {
    font-size: 0.95rem;
  }
}

/* Connect With Me Section */
#connect {
  padding: 60px 0;
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.connect-section .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.connect-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2a2a4a;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.connect-section h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #8a4fff;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

#contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  width: 100%;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #8a4fff;
  box-shadow: 0 0 0 3px rgba(138, 79, 255, 0.2);
  background-color: white;
}

#contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

#contact-form button {
  background: linear-gradient(135deg, #8a4fff 0%, #6a2ce8 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(138, 79, 255, 0.3);
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

#contact-form button:hover {
  background: linear-gradient(135deg, #7a3fff 0%, #5a1cd8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138, 79, 255, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #connect {
    padding: 50px 0;
  }
  
  .connect-section h2 {
    font-size: 1.8rem;
  }
  
  #contact-form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  #connect {
    padding: 40px 0;
  }
  
  .connect-section h2 {
    font-size: 1.6rem;
  }
  
  #contact-form {
    padding: 20px;
  }
  
  #contact-form textarea {
    min-height: 100px;
  }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 15px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand .logo-text span {
  color: var(--primary-light);
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 300px;
}

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

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
}

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

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.whatsapp-link {
  color: --primary !important;
}

.instagram-link {
  color: --primary !important;
}

.whatsapp-link:hover,
.instagram-link:hover {
  color: white !important;
}

.whatsapp-link i,
.instagram-link i {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-column h4 {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 15px;
  }
  
  .footer-brand .logo {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    font-size: 0.9rem;
  }
}