:root {
  --primary: #23a6a6;
  --primary-dark: #1b8a8a;
  --secondary: #d57838;
  --secondary-dark: #b56228;
  --text-main: #333333;
  --text-light: #666666;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  color: var(--text-main);
  line-height: 1.6;
}

body {
  background-color: var(--bg-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: #111;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.btn-primary:hover {
  background-color: var(--secondary-dark);
}

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

.btn-secondary:hover {
  background-color: var(--primary-dark);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

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

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
}

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

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg-light);
  border-bottom-left-radius: 100px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #111;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* Quick Contact / Info Bar */
.info-bar {
  background: var(--primary);
  color: white;
  padding: 2rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.info-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.info-item h3 {
  color: white;
  font-size: 1.2rem;
}

.info-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-content h2 {
  text-align: left;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mv-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid var(--secondary);
}

.mv-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(35, 166, 166, 0.15);
}

.card-sparks {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  opacity: 0.8;
  transform: scale(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-card:hover .card-sparks {
  opacity: 1;
  transform: scale(1.3) rotate(5deg);
}

.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-light);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 5px solid white;
  position: relative;
  z-index: 2;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Services Section Redesign */
.services-section {
  background-color: #ffffff;
  overflow: hidden;
  padding: 8rem 0;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
}

.services-main-title {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  margin: 0;
}

/* Sparks near title */
.title-sparks {
  position: absolute;
  top: -10px;
  right: -30px;
}

.spark {
  position: absolute;
  background-color: #ffd100;
  border-radius: 10px;
}
.s1 { width: 12px; height: 4px; transform: rotate(-45deg); top: -5px; left: 0; }
.s2 { width: 18px; height: 5px; transform: rotate(-15deg); top: 10px; left: 15px; }
.s3 { width: 14px; height: 5px; transform: rotate(15deg); top: 25px; left: 10px; }

/* Doodles */
.doodle-paw-top {
  position: absolute;
  top: -60px;
  right: -5%;
  font-size: 8rem;
  color: #111;
  transform: rotate(45deg);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.doodle-dog-bottom {
  position: absolute;
  bottom: -180px;
  left: -12%;
  font-size: 15rem;
  color: #111;
  transform: rotate(30deg);
  opacity: 0.15; /* Reduced opacity significantly to make it a subtle background element */
  z-index: 0;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.service-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.service-icon {
  width: 130px;
  height: 130px;
  background-color: #eef3ff;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--secondary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(213, 120, 56, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #111;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
}
/* Gallery Collage */
.gallery-section {
  background-color: #fbfaf9;
  overflow: hidden;
  padding: 6rem 0;
}



.collage-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  margin: 4rem auto;
  max-width: 1200px;
}

.collage-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 10px solid;
  transition: all 0.3s ease;
}

.collage-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collage-item:hover {
  z-index: 100 !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.collage-item:hover .collage-item-inner {
  transform: scale(1.1) rotate(3deg);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-1 {
  width: 280px;
  height: 180px;
  border-color: #40a0a0;
  top: 5%;
  left: 0%;
  transform: rotate(-6deg);
  z-index: 2;
}

.img-2 {
  width: 250px;
  height: 320px;
  border-color: #c98b61;
  top: 35%;
  left: 15%;
  transform: rotate(8deg);
  z-index: 4;
}

.img-3 {
  width: 360px;
  height: 220px;
  border-color: #c98b61;
  top: 15%;
  left: 32%;
  transform: rotate(-2deg);
  z-index: 1;
}

.img-4 {
  width: 240px;
  height: 300px;
  border-color: #c98b61;
  top: 10%;
  right: 10%;
  transform: rotate(5deg);
  z-index: 3;
}

.img-5 {
  width: 280px;
  height: 200px;
  border-color: #40a0a0;
  bottom: 8%;
  left: 40%;
  transform: rotate(-4deg);
  z-index: 5;
}
.img-5 .collage-item-inner { border-radius: 20px; overflow: hidden; }

.img-6 {
  width: 300px;
  height: 350px;
  border-color: #40a0a0;
  bottom: -2%;
  right: 0%;
  transform: rotate(-6deg);
  z-index: 4;
}

.collage-wrapper i {
  position: absolute;
  color: #c98b61;
  font-size: 2.5rem;
  opacity: 0.8;
}

.doodle-1 { top: 40%; left: -5%; transform: rotate(-20deg); }
.doodle-2 { color: #40a0a0; top: 12%; left: 28%; transform: rotate(15deg); }
.doodle-3 { color: #40a0a0; bottom: 10%; left: 12%; transform: rotate(-10deg); }
.doodle-4 { top: 15%; right: 5%; transform: rotate(45deg); font-size: 3rem; }
.doodle-5 { color: #40a0a0; bottom: 25%; right: 28%; transform: rotate(25deg); }



@media (max-width: 992px) {
  .collage-wrapper {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .collage-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
  }
  .collage-wrapper i {
    display: none;
  }
}

/* FAQ */
.faq-section-wrapper {
  position: relative;
  overflow: hidden;
}

.faq-paw-doodle {
  position: absolute;
  top: 45%; /* Moved down from 15% */
  right: -80px;
  width: 300px;
  height: 80px;
  border: 6px solid #111;
  border-right: none;
  border-radius: 40px 0 0 40px;
  background-color: transparent;
  transform: rotate(35deg);
  transform-origin: right center;
  display: flex;
  align-items: center;
  padding-left: 15px;
  opacity: 0.8; 
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .faq-paw-doodle {
    width: 200px;
    height: 50px;
    top: 60%;
    right: -40px;
    opacity: 0.1;
  }
  .faq-paw-doodle i {
    font-size: 2rem;
  }
}

.faq-paw-doodle i {
  font-size: 3.5rem;
  color: #111;
  transform: rotate(-90deg);
}

.faq-title-wrapper {
  position: relative;
  display: inline-block;
}
/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #111;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Reviews / Testimonials */
.reviews-section {
  background-color: #fcfbfa; /* Slightly off-white for contrast */
}


/* Location / Contact */
.contact-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info-panel {
  padding: 4rem;
  background: var(--primary);
  color: white;
}

.contact-info-panel h2 {
  color: white;
  text-align: left;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

.contact-detail h4 {
  color: white;
  margin-bottom: 0.2rem;
}

.contact-detail p {
  color: rgba(255,255,255,0.8);
}

.map-container {
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA Footer Section */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.cta-section h2 {
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-desc {
  color: #aaa;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Promesa Section */
.promesa-section {
  background-color: white;
  overflow: hidden;
  padding: 8rem 0;
}

.promesa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.promesa-circle-bg {
  position: absolute;
  width: 90%;
  padding-bottom: 90%;
  background-color: #eaf5f5; /* Light teal */
  border-radius: 50%;
  z-index: 0;
  left: 5%;
}

.promesa-img {
  position: relative;
  z-index: 1;
  border-radius: 300px 300px 20px 20px;
  max-width: 85%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.promesa-rays {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: 2;
}

.ray {
  background-color: var(--secondary);
  border-radius: 10px;
  margin-bottom: 15px;
}

.ray-1 { width: 40px; height: 10px; transform: rotate(-30deg); }
.ray-2 { width: 60px; height: 10px; transform: rotate(-10deg); margin-left: -20px; }
.ray-3 { width: 40px; height: 10px; transform: rotate(10deg); }

.promesa-content {
  position: relative;
  text-align: center;
}

.promesa-subtitle {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  transform: rotate(-3deg);
  display: inline-block;
}

.promesa-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #111;
  letter-spacing: -1px;
}

.promesa-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: justify;
}

.btn-promesa-link {
  display: inline-block;
  font-weight: 800;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-promesa-link:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.promesa-icon-top {
  position: absolute;
  top: -60px;
  right: 15%;
  font-size: 3rem;
  color: #111;
  transform: rotate(15deg);
}

.promesa-icon-bottom {
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-size: 6rem;
  color: #111;
  transform: rotate(-30deg);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-wrapper, .promesa-grid {
    grid-template-columns: 1fr;
  }
  
  .hero::before {
    width: 100%;
    height: 60%;
    bottom: 0;
    top: auto;
    border-bottom-left-radius: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  
  .hero {
    padding-top: 8rem;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
  
  .services-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 1.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 4px solid white;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.collage-item {
  cursor: pointer;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: -50px;
    right: 0;
  }
}

/* Language Button */
.btn-lang {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-left: 0.5rem;
}

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

/* Video Trigger and Play Button */
.video-trigger {
  position: relative;
  border-radius: 20px;
  display: block;
}

.video-trigger::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
  transition: background 0.3s ease;
  border-radius: 20px;
}

.video-trigger:hover::before {
  background: rgba(0,0,0,0.4);
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.video-trigger:hover .play-btn-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.play-btn-overlay i {
  margin-left: 5px; /* Adjust optical center for play icon */
}

@media (max-width: 768px) {
  .play-btn-overlay {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
