/* ===== Base Styles ===== */
:root {
  --primary: #6e45e2;
  --secondary: #88d3ce;
  --accent: #ff7e5f;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gradient-1: linear-gradient(135deg, #6e45e2 0%, #89d3ce 100%);
  --gradient-2: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  --gradient-3: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --text-gradient: linear-gradient(90deg, #6e45e2, #ff7e5f);
}

.fa-star{
   flood-color: #ff7e5f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== Background Elements ===== */
.gradient-circle {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
}

.circle-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-1);
  top: -300px;
  left: -300px;
  animation: float 15s infinite alternate;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-2);
  bottom: -200px;
  right: -200px;
  animation: float 18s infinite alternate-reverse;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: var(--gradient-3);
  top: 50%;
  right: 10%;
  animation: float 12s infinite alternate;
}

.holographic-element {
  position: fixed;
  border-radius: 5px;
  background: linear-gradient(45deg, 
    rgba(110, 69, 226, 0.1), 
    rgba(255, 255, 255, 0.2), 
    rgba(110, 69, 226, 0.1));
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
  opacity: 0.7;
}

.holo-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 5%;
  transform: rotate(45deg);
  animation: pulse 8s infinite;
}

.holo-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
  transform: rotate(20deg);
  animation: pulse 10s infinite reverse;
}

/* ===== Header Styles ===== */
.glass-header {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--primary);
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.3);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link .link-icon {
  transition: transform 0.3s ease;
}

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

.nav-link:hover .link-icon {
  transform: translateY(-3px);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gradient-1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.3);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 69, 226, 0.4);
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 5rem 5% 0;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gradient {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.3);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 69, 226, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.hero-image-container {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(110, 69, 226, 0.3), transparent);
}

/* Scrolling Banner */
.scrolling-banner {
  background: var(--gradient-3);
  color: white;
  padding: 1rem 0;
  margin: 3rem 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(142, 84, 233, 0.3);
}

.scrolling-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.scrolling-content span {
  font-weight: 600;
  font-size: 1.1rem;
}

.scrolling-content i {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Features Section ===== */
.features-section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-title-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.card-1 .feature-icon-container {
  background: var(--gradient-1);
}

.card-2 .feature-icon-container {
  background: var(--gradient-2);
}

.card-3 .feature-icon-container {
  background: var(--gradient-3);
}

.feature-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-wave {
  opacity: 1;
}

.card-1:hover .feature-wave {
  background: var(--gradient-1);
}

.card-2:hover .feature-wave {
  background: var(--gradient-2);
}

.card-3:hover .feature-wave {
  background: var(--gradient-3);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-container {
  background: var(--gradient-1);
  border-radius: 20px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(110, 69, 226, 0.3);
}

.cta-content {
  flex: 1;
  color: white;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.btn-gradient-pulse {
  background: white;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gradient-pulse:hover::before {
  opacity: 1;
}

.btn-gradient-pulse:hover {
  color: white;
}

.cta-decoration {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.cta-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s infinite alternate;
}

/* ===== Footer ===== */
.glass-footer {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 5% 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p {
  color: #555;
  line-height: 1.6;
}

.footer-links h4, 
.footer-contact h4,
.footer-social h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.footer-contact i {
  width: 20px;
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp brand green */
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background: #128C7E; /* Darker green on hover */
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse animation (optional) */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-icon:hover i {
  animation: pulse 1.5s infinite;
}

/* ===== Animations ===== */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-content {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== Contact Page Specific Styles ===== */
.contact-hero {
  padding: 6rem 5% 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.contact-hero-content {
  flex: 1;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
}

.contact-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.contact-icon:nth-child(2) i {
  background: var(--gradient-2);
}

.contact-icon:nth-child(3) i {
  background: var(--gradient-3);
}

.contact-icon i:hover {
  transform: translateY(-5px) scale(1.1);
}

.contact-icon span {
  font-weight: 600;
  color: var(--dark);
}

.contact-hero-image {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/contact-hero.jpg') center/cover no-repeat;
}

/* Contact Methods Section */
.contact-methods-section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.contact-method-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.method-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
  background: var(--gradient-1);
}

.contact-method-card:nth-child(2) .method-icon-container {
  background: var(--gradient-2);
}

.contact-method-card:nth-child(3) .method-icon-container {
  background: var(--gradient-3);
}

.contact-method-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.contact-method-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.method-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--accent);
}

.method-link i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 69, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #777;
  font-size: 0.9rem;
}

.method-details i {
  color: var(--primary);
}

.method-address {
  display: flex;
  gap: 0.5rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.method-address i {
  color: var(--primary);
  margin-top: 3px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.form-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-content {
  flex: 1;
  padding: 3rem;
}

.form-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.form-content p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group:nth-child(5),
.form-group:nth-child(6) {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

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

.form-decoration {
  flex: 1;
  height: 100%;
  min-height: 500px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.form-orb {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  animation: pulse 4s infinite alternate;
}

/* Map Section */
.map-section {
  padding: 0 5% 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(110, 69, 226, 0.1), transparent);
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-icon:hover .tooltip {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-hero {
    flex-direction: column;
  }
  
  .contact-hero-image {
    width: 100%;
  }
  
  .form-container {
    flex-direction: column;
  }
  
  .form-decoration {
    width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(5),
  .form-group:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-icons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}