/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #FAF3E0;
  /* Champagne Soft Background */
  --color-text: #4A4238;
  /* Deep Bronze for dark text on light bg */
  --color-text-dark: #2C2621;
  /* Darker bronze for better contrast */
  --color-accent: #a67c52;
  /* Terracotta accent stays */
  --color-aloe: #2E4B38;
  /* Keeping aloe as accent */
  --color-accent-light: #FDFBF7;
  /* Lighter cream for cards */
  --color-white: #ffffff;
  --font-body: 'Poppins', sans-serif;
  --font-header: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-header);
  font-weight: 700;
  margin-top: 0;
  color: var(--color-accent);
  /* Headers in Terracotta initially or Text color */
}

.mantra-text {
  color: #D4AF37;
  /* Golden color */
  font-family: 'Playfair Display', serif;
  /* Elegant serif font */
  font-style: italic;
  font-size: calc(1.5rem + 1vw);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

/* Global Responsiveness Improvements */
html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

/* Feature Blocks (Porque elegirnos) */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  /* Stacked vertical blocks */
  gap: 2.5rem;
  margin-top: 3.5rem;
  max-width: 800px !important;
  /* Narrower for better readability */
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  padding: 35px;
  border-radius: 15px;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFFBF0 100%);
  /* Cream background */
  border: 2px solid #D4AF37;
  /* Thin gold border */
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-purple,
.feature-blue,
.feature-green,
.feature-note {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFFBF0 100%);
  /* Cream background for all */
  border: 2px solid #D4AF37;
  /* Thin gold border for all */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.feature-item h4 {
  font-size: 1.8rem;
  /* Larger titles */
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  /* Modern clean font */
  font-weight: 600;
  color: #B8860B !important;
  /* Dark golden color for all titles */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Remove individual color overrides */
.feature-purple h4,
.feature-blue h4,
.feature-green h4,
.feature-note h4 {
  color: #B8860B !important;
  /* Same golden color for all */
}

.feature-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}


.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 1001;
  transition: transform 0.3s;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle .bar {
  width: 30px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 3px;
}

.menu-toggle .menu-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-top: 2px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-decoration: none;
  cursor: pointer;
}

.header-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid rgba(166, 124, 82, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-family: var(--font-header);
  font-size: calc(1rem + 0.8vw);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin: 0;
}

.admin-access-header .admin-btn-link {
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.admin-access-header .admin-btn-link:hover {
  opacity: 1;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 38, 33, 0.98);
  /* Dark bronze spiritual overlay */
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  line-height: 1;
}

.overlay-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.overlay-nav li {
  margin: 1.5rem 0;
}

.overlay-nav a,
.overlay-dropbtn {
  font-family: var(--font-header);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.3s;
}

.overlay-nav a:hover,
.overlay-dropbtn:hover {
  color: var(--color-accent);
}

.overlay-dropdown-content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-dropdown-content a {
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .header-top {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .overlay-nav a {
    font-size: 1.5rem;
  }
}





/* Hero Improvements */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
}

/* .hero-section::before replaced by img tag for full auto-height scaling */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 243, 224, 0.3);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.hero-bg-full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 15s infinite alternate ease-in-out;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}


.hero-title {
  font-size: calc(1.8rem + 1.5vw);
  line-height: 1.2;
  color: var(--color-accent);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-branding {
  font-family: var(--font-header);
  font-size: calc(1.5rem + 1.2vw);
  color: #D4AF37;
  /* Golden */
  text-align: center;
  margin: 3rem auto 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  max-width: 900px;
  padding: 0 20px;
}

.hero-tagline-below {
  font-size: calc(1.2rem + 0.5vw);
  color: #7d5BA6;
  /* Spiritual Amethyst Violet */
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-header);
  font-style: italic;
  opacity: 1;
}

/* Grids & Cards */
.workshops-grid,
.testimonials-grid,
.extra-gallery,
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.workshop-card {
  background: #fffcf5;
  /* Warm spiritual cream */
  box-shadow: 0 8px 25px rgba(166, 124, 82, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
  color: var(--color-text-dark);
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(166, 124, 82, 0.15);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid rgba(166, 124, 82, 0.05);
}

.card-content {
  padding: 24px;
  text-align: left;
  background: linear-gradient(135deg, #fffdfa 0%, #fff9f0 100%);
  /* Divine glow background */
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-details {
  font-size: 0.9rem;
  margin-top: 15px;
  color: var(--color-text);
}

.card-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.card-details li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.card-details li::before {
  content: "•";
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card-invite {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 10px;
}

/* Video Section */
.video-section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-container-full {
  width: 100%;
  max-width: 1200px;
  max-height: 750px;
  margin: 0 auto 3rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.video-container-full video {
  width: 100%;
  max-height: 750px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Old styles kept for compatibility if needed elsewhere */
.video-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .video-wrapper {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.video-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  object-fit: contain;
  /* No cutting */
  background: rgba(125, 91, 166, 0.03);
  /* Soft spiritual tint */
  animation: none;
  /* Ken burns often cuts edges, removing to ensure full visibility */
}


/* Gallery */
.extra-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* No cutting - shows full image */
  background: rgba(125, 91, 166, 0.03);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  padding: 10px;
  /* Add padding to ensure no edges are cut */
}

.extra-gallery img:hover {
  transform: scale(1.02);
  /* Reduced scale to prevent overflow */
}

/* Testimonials */
.testimonial-card {
  background: #f7f9f8;
  /* Soft aloe/sage tint */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 75, 56, 0.08);
  /* Subtle aloe shadow */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  min-height: 400px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(46, 75, 56, 0.12);
}

.testimonial-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0eb 0%, #f0f7f4 100%);
  /* Healing green gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid rgba(46, 75, 56, 0.05);
}

.testimonial-media img,
.testimonial-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-content {
  padding: 25px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Text Only Testimonials Styling */
.testimonial-card.testimonial-text-only {
  background-color: var(--color-accent-light);
  min-height: auto;
  border: 1px solid rgba(166, 124, 82, 0.2);
}

.testimonial-card.testimonial-text-only .testimonial-text {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.testimonial-card.testimonial-text-only .testimonial-author {
  font-size: 1.1rem;
  color: var(--color-text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3-Column Profile Section */
.info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  margin: 0;
}

.col-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.col-vision,
.col-sessions {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-vision {
  background-color: var(--color-accent-light);
}

.col-sessions {
  background-color: var(--color-accent);
  color: white;
}

.services-title {
  color: white;
  text-transform: none;
  margin-bottom: 10px;
  font-family: var(--font-header);
  text-align: center;
  font-size: 2rem;
}

.services-subtitle {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.subtitle-name {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: 1px;
}

.subtitle-role {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 5px 0 0;
  font-style: italic;
}

.col-vision h3,
.col-sessions h3 {
  text-transform: none;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 8px;
}


/* Sections */
.intro-section,
.workshops-section,
.testimonials-section,
.about-us-detailed {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.intro-tagline {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 3rem;
  text-align: center;
}

.about-closing {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-header);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.about-closing p {
  margin: 0.5rem 0;
}

.about-closing .highlight {
  color: var(--color-accent);
  font-weight: 700;
  display: block;
  font-size: 1.3rem;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--color-accent);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-logo-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Zoom to match splash style */
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: white;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


@media (max-width: 768px) {
  .footer-logo-container {
    position: static;
    margin: 20px auto 0;
    width: 60px;
    height: 60px;
  }
}

/* Certification Info Section */
.certification-info-container {
  padding: 4rem 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
  background-color: var(--color-accent-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(166, 124, 82, 0.05);
  border: 1px solid rgba(166, 124, 82, 0.1);
}

.cert-info-title {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-header);
}

.cert-location {
  font-size: 1.3rem;
  color: #7d5BA6;
  font-weight: 600;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.cert-question {
  font-size: 1.35rem;
  font-style: italic;
  font-family: var(--font-header);
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cert-description,
.cert-details,
.cert-accreditation {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  color: var(--color-text);
}

.cert-mantra {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  /* Gold */
  margin: 3rem 0;
  font-family: var(--font-header);
}

.cert-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(166, 124, 82, 0.1);
}

.cert-contact p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cert-phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s;
}

.cert-phone:hover {
  color: #7d5BA6;
}

/* ============================================
   RESPONSIVE DESIGN - Media Queries
   ============================================ */

/* Tablets and smaller desktops (768px - 1024px) */
@media (max-width: 1024px) {
  .video-container-full {
    max-height: 600px;
  }

  .video-container-full video {
    max-height: 600px;
  }

  .workshops-grid,
  .testimonials-grid,
  .extra-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Tablets (600px - 768px) */
@media (max-width: 768px) {
  .video-section {
    padding: 3rem 1rem;
  }

  .video-container-full {
    max-height: 500px;
    margin: 0 auto 2rem auto;
  }

  .video-container-full video {
    max-height: 500px;
  }

  .extra-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .workshops-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-section {
    height: 40vh;
    min-height: 300px;
  }

  .hero-title {
    font-size: calc(1.5rem + 1vw);
  }

  .info-columns {
    grid-template-columns: 1fr;
  }

  .col-image {
    min-height: 300px;
  }

  .about-features {
    gap: 2rem;
  }

  .feature-item {
    padding: 25px;
  }
}

/* Mobile devices (max-width: 600px) */
@media (max-width: 600px) {

  .intro-section,
  .workshops-section,
  .testimonials-section,
  .about-us-detailed,
  .video-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .video-container-full {
    max-height: 400px;
    margin: 0 auto 1.5rem auto;
    border-radius: 6px;
  }

  .video-container-full video {
    max-height: 400px;
  }

  .extra-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .extra-gallery img {
    padding: 5px;
  }

  .workshops-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-tagline-below {
    font-size: 1.1rem;
  }

  .mantra-text {
    font-size: 1.3rem;
  }

  .header-logo {
    max-width: 100px;
  }

  .main-nav ul {
    gap: 1rem;
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .col-vision,
  .col-sessions {
    padding: 30px 20px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-item h4 {
    font-size: 1.5rem;
  }

  .about-closing .highlight {
    font-size: 1.1rem;
  }
}

/* Extra small mobile devices (max-width: 400px) */
@media (max-width: 400px) {
  .video-container-full {
    max-height: 300px;
  }

  .video-container-full video {
    max-height: 300px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .intro-section,
  .workshops-section,
  .testimonials-section,
  .about-us-detailed,
  .video-section {
    padding: 1.5rem 0.8rem;
  }

  .extra-gallery img {
    border-radius: 6px;
  }
}

/* Floating Social Icons Container */
.social-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2100;
  /* Higher than menu overlay */
  align-items: center;
}

.social-float-btn {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.social-float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-float-btn svg {
  width: 30px !important;
  height: 30px !important;
  display: block;
}

/* Specific button colors */
.float-whatsapp {
  background-color: #25D366 !important;
}

.float-facebook {
  background-color: #1877F2 !important;
}

.float-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

@media (max-width: 600px) {
  .social-float-container {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .social-float-btn {
    width: 45px !important;
    height: 45px !important;
  }

  .social-float-btn svg {
    width: 25px !important;
    height: 25px !important;
  }
}