/* Import Google Fonts for a friendly, modern and professional look */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Soft pastels and warm friendly tones */
  --primary: #4A90E2;       /* Soft Friendly Blue */
  --primary-light: #E3F2FD; /* Pastel Ice Blue */
  --secondary: #FF6F61;     /* Warm Coral / Salmon */
  --secondary-light: #FFEBEE; /* Soft Pastel Coral */
  --accent-yellow: #FFB300; /* Warm Sun Yellow */
  --accent-green: #4CAF50;  /* Pastel Menta / Soft Green */
  --accent-green-light: #E8F5E9;
  
  --bg-gradient: linear-gradient(135deg, #FFFDE7 0%, #F3E5F5 100%); /* Soft warm to purple-pink */
  
  --text-dark: #2C3E50;     /* Slate Blue for high contrast readability */
  --text-light: #5D6D7E;    /* Soft Slate */
  --white: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.9);
  
  /* Layout & Shadows */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(74, 144, 226, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  /* Font Families */
  --font-headings: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #FDFEFE;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
}

p {
  color: var(--text-light);
  font-weight: 500;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Utility Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-primary:hover {
  background-color: #357ABD;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

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

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

.section-padding {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 6px;
  background-color: var(--accent-yellow);
  border-radius: 10px;
  margin: 10px auto 0;
}

.section-header p {
  font-size: 1.15rem;
}

/* Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--primary-light);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
}

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

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

/* Decorative SVGs in background */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-1 { top: 15%; left: 5%; color: var(--primary); }
.shape-2 { top: 60%; left: 8%; color: var(--secondary); animation-delay: 2s; }
.shape-3 { top: 20%; right: 10%; color: var(--accent-yellow); animation-delay: 4s; }
.shape-4 { top: 70%; right: 5%; color: var(--accent-green); animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

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

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary);
  display: inline-block;
  position: relative;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background-color: var(--secondary-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  animation: blob-bounce 15s ease-in-out infinite alternate;
}

@keyframes blob-bounce {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-container {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--primary-light);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-headings);
  font-weight: 700;
  text-align: center;
  transform: rotate(5deg);
}

.about-badge span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.about-feature-icon {
  color: var(--accent-green);
  font-size: 1.3rem;
  display: flex;
}

.about-trust-card {
  display: flex;
  gap: 20px;
  background-color: var(--primary-light);
  border-left: 6px solid var(--primary);
  padding: 25px;
  border-radius: var(--border-radius-md);
  margin-top: 35px;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}

.trust-card-icon {
  font-size: 2rem;
  background-color: var(--white);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  flex-shrink: 0;
}

.trust-card-body h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.5;
}

.trust-card-body p:last-child {
  margin-bottom: 0;
}


/* Services Section */
.services {
  background-color: #FAF9F6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--primary);
}

.service-card:nth-child(2n) { border-top-color: var(--secondary); }
.service-card:nth-child(3n) { border-top-color: var(--accent-yellow); }
.service-card:nth-child(4n) { border-top-color: var(--accent-green); }

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

.service-icon-box {
  width: 65px;
  height: 65px;
  background-color: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:nth-child(2n) .service-icon-box { background-color: var(--secondary-light); }
.service-card:nth-child(3n) .service-icon-box { background-color: #FFF9C4; }
.service-card:nth-child(4n) .service-icon-box { background-color: var(--accent-green-light); }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card:nth-child(2n) .service-benefit { color: var(--secondary); }
.service-card:nth-child(3n) .service-benefit { color: #E65100; }
.service-card:nth-child(4n) .service-benefit { color: var(--accent-green); }

/* Benefits Section */
.benefits {
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  background-color: var(--primary-light);
  padding: 25px;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.benefit-item:nth-child(2) { background-color: var(--secondary-light); }
.benefit-item:nth-child(3) { background-color: var(--accent-green-light); }

.benefit-item:hover {
  transform: scale(1.02);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.benefit-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.95rem;
}

.benefits-cta-card {
  background: var(--bg-gradient);
  padding: 45px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 4px solid var(--white);
}

.benefits-cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.benefits-cta-card p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

/* Gallery Section */
.gallery {
  background-color: #FAF9F6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 4px solid var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 144, 226, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-light);
  position: relative;
}

.testimonial-stars {
  color: var(--accent-yellow);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-headings);
}

.testimonial-card:nth-child(2) { border-color: var(--secondary-light); }
.testimonial-card:nth-child(2) .author-avatar { background-color: var(--secondary-light); color: var(--secondary); }
.testimonial-card:nth-child(3) { border-color: var(--accent-green-light); }
.testimonial-card:nth-child(3) .author-avatar { background-color: var(--accent-green-light); color: var(--accent-green); }

.author-info h4 {
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.85rem;
}

/* Location and Contact Section combined */
.location-contact {
  background: #FAF9F6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-details h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.info-details p, .info-details a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.map-wrapper {
  margin-top: 20px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--white);
  height: 250px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
  padding: 20px;
}

.map-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-card p {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #E2E8F0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  font-weight: 500;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

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

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer h3, .footer h4 {
  color: var(--white);
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-desc {
  color: #B2EBF2;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

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

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent-yellow);
  margin-top: 5px;
  border-radius: 5px;
}

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

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

.footer-links a {
  color: #B0BEC5;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-img {
    max-width: 380px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 50px 0;
    gap: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

