body{
  font-family:Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #f8eef2 0%, #fef7e8 100%);
  margin:0;
  overflow-x:hidden;
  animation:bodyPulse 8s ease-in-out infinite;
}

/* NAVBAR */
.navbar{
  background:#ff4d6d;
  color:white;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  animation:slideDown 0.7s ease;
  position:sticky;
  top:0;
  z-index:999;
  flex-wrap:wrap;
}

.nav-links {
  display:flex;
  gap:5px;
  align-items:center;
}

.nav-link {
  color:white;
  text-decoration:none;
  padding:8px 16px;
  border-radius:20px;
  font-weight:500;
  transition:all 0.3s ease;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
}

.nav-link:hover,
.nav-link.active {
  background:rgba(255,255,255,0.25);
  transform:translateY(-1px);
}

.navbar h2{
  margin:0;
  letter-spacing:2px;
  text-shadow:0 2px 8px rgba(0,0,0,0.2);
}

.navbar input{
  padding:10px 12px;
  border:none;
  border-radius:20px;
  width:220px;
  transition:all .3s ease;
}

.navbar input:focus{
  width:280px;
  box-shadow:0 0 0 3px rgba(255,77,109,0.25);
  outline:none;
}

/* CONTAINER */
.container{
  padding:20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

/* CARD */
.card{
  background: linear-gradient(145deg, #fff, #fff4f7);
  padding:15px;
  border-radius:16px;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  animation:cardPop 0.8s ease forwards;
  opacity:0;
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  transition:transform 0.5s ease;
}

.card:hover{
  transform:translateY(-10px) scale(1.01);
  box-shadow:0 16px 30px rgba(0,0,0,0.2);
  filter:brightness(1.02);
}

.card:hover img{
  transform:scale(1.04);
}

/* BUTTON */
.btn{
  padding:10px 14px;
  margin-top:10px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  transition:transform .2s ease, box-shadow .2s ease;
  margin: 2px;
}

.btn:hover{transform:translateY(-2px); box-shadow:0 6px 14px rgba(0,0,0,0.15);}

.call{ background:linear-gradient(45deg,#3cd24a,#08a61e); color:white; }
.whatsapp{ background:linear-gradient(45deg,#06c86f,#12d98d); color:white; }
.details{ background:linear-gradient(45deg,#3b86ff,#0f6cfb); color:white; }
.update{ background:linear-gradient(45deg,#ffaa00,#ff8800); color:white; }

/* CONTACT FORM */
.contact-panel {
  background:white;
  padding:25px;
  margin:20px;
  border-radius:14px;
  box-shadow:0 10px 20px rgba(0,0,0,0.12);
  animation:fadeIn 0.6s ease;
}

.contact-panel h2{ margin-top:0; color:#a02179; }

.contact-form {
  display:grid;
  gap:12px;
  animation:formBounce 0.8s ease;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px;
  border:1px solid #e9d3dc;
  border-radius:8px;
  transition:border .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color:#ff4d6d;
  box-shadow:0 0 0 4px rgba(255,77,109,0.2);
  outline:none;
}

.contact-form textarea { height:120px; resize:vertical; }

.contact-form .btn {
  width:160px;
  background:linear-gradient(45deg,#ff6485,#ff2661);
  color:white;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: modalFade 0.3s ease;
}

.modal-overlay[style*="flex"] {
  display: flex !important;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-content h3 {
  margin-top: 0;
  color: #ff4d6d;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.modal-content .btn {
  margin: 5px;
}

/* ANIMATIONS */
@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1;}
}

@keyframes cardPop{
  from{opacity:0; transform:translateY(20px) scale(0.96);} 
  to{opacity:1; transform:translateY(0) scale(1);}
}

@keyframes slideDown{
  from{opacity:0; transform:translateY(-25px);} 
  to{opacity:1; transform:translateY(0);}
}

@keyframes bodyPulse {
  0%,100%{ background: linear-gradient(135deg, #f8eef2 0%, #fef7e8 100%);} 
  50%{ background: linear-gradient(135deg, #fff7fa 0%, #fffef8 100%);} 
}

@keyframes formBounce{
  0%{transform:translateY(15px); opacity:0;}
  60%{transform:translateY(-8px); opacity:1;}
  100%{transform:translateY(0);}
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.toast {
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.8);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  z-index:9999;
  font-size:14px;
  opacity:1;
  transition:opacity .4s ease;
  pointer-events:none;
}

/* GALLERY STYLES */
.gallery-container {
  max-width:1400px;
  margin:0 auto;
  padding:40px 20px;
}

.page-header {
  text-align:center;
  margin-bottom:50px;
  color:#a02179;
  animation:slideUp 0.8s ease;
}

.page-header h1 {
  font-size:clamp(2.5rem, 5vw, 4rem);
  margin:0 0 10px 0;
  text-shadow:0 2px 10px rgba(0,0,0,0.1);
  letter-spacing:1px;
  font-weight:bold;
}

.page-header p {
  font-size:1.2rem;
  color:#666;
  max-width:600px;
  margin:0 auto;
  line-height:1.6;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:25px;
  padding-bottom:40px;
  justify-items:center;
}

.gallery-item {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor:pointer;
  background:linear-gradient(145deg, #fff, #fff9fc);
  width:100%;
  max-width:360px;
  animation:galleryPop 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay:0.1s; }
.gallery-item:nth-child(2) { animation-delay:0.2s; }
.gallery-item:nth-child(3) { animation-delay:0.3s; }
.gallery-item:nth-child(4) { animation-delay:0.4s; }
.gallery-item:nth-child(5) { animation-delay:0.5s; }
.gallery-item:nth-child(6) { animation-delay:0.6s; }
.gallery-item:nth-child(7) { animation-delay:0.7s; }
.gallery-item:nth-child(8) { animation-delay:0.8s; }
.gallery-item:nth-child(9) { animation-delay:0.9s; }
.gallery-item:nth-child(10) { animation-delay:1s; }

.gallery-item:hover {
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.gallery-item img {
  width:100%;
  height:300px;
  object-fit:cover;
  transition:transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display:block;
}

.gallery-item:hover img {
  transform:scale(1.12) rotate(0.5deg);
}

.overlay {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  color:white;
  padding:30px 15px 15px;
  transform:translateY(100%);
  transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align:center;
}

.overlay span {
  font-size:16px;
  font-weight:500;
  letter-spacing:0.5px;
}

.gallery-item:hover .overlay {
  transform:translateY(0);
}

.lightbox {
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.95);
  z-index:10001;
  align-items:center;
  justify-content:center;
  padding:20px;
  animation:fadeIn 0.3s ease;
}

.lightbox-content {
  max-width:90%;
  max-height:90vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 0 50px rgba(255,77,109,0.5);
  animation:zoomIn 0.4s ease;
}

.close {
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:40px;
  font-weight:bold;
  cursor:pointer;
  z-index:10002;
  background:rgba(255,77,109,0.8);
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.3s ease, transform 0.2s ease;
  border:2px solid white;
}

.close:hover {
  background:rgba(255,77,109,1);
  transform:rotate(90deg) scale(1.1);
}

.nav-arrows {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:20px;
  z-index:10002;
}

.nav-arrows button {
  background:linear-gradient(45deg, #ff4d6d, #ff2661);
  color:white;
  border:2px solid white;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:24px;
  font-weight:bold;
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:0 8px 20px rgba(255,77,109,0.4);
}

.nav-arrows button:hover {
  transform:scale(1.1) translateY(-3px);
  box-shadow:0 12px 30px rgba(255,77,109,0.6);
}

.nav-arrows button:active {
  transform:scale(0.95);
}

@keyframes galleryPop {
  from {
    opacity:0;
    transform:translateY(30px) scale(0.9);
  }
  to {
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity:0;
    transform:scale(0.8);
  }
  to {
    opacity:1;
    transform:scale(1);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:15px;
  }
  
  .gallery-item {
    max-width:100%;
  }
  
  .gallery-item img {
    height:250px;
  }
  
  .close {
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    font-size:32px;
  }
  
  .nav-arrows {
    bottom:15px;
    gap:10px;
  }
  
  .nav-arrows button {
    width:45px;
    height:45px;
    font-size:20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size:2rem;
    margin-bottom:15px;
  }
  
  .page-header p {
    font-size:1rem;
  }
  
  .gallery-grid {
    grid-template-columns:1fr;
    gap:12px;
  }
}

.lightbox-content {
  max-width:90%;
  max-height:90vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 0 50px rgba(255,77,109,0.5);
  animation:zoomIn 0.4s ease;
}

.close {
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:40px;
  font-weight:bold;
  cursor:pointer;
  z-index:10002;
  background:rgba(255,77,109,0.8);
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.3s ease, transform 0.2s ease;
  border:2px solid white;
}

.close:hover {
  background:rgba(255,77,109,1);
  transform:rotate(90deg) scale(1.1);
}

.nav-arrows {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:15px;
}

.nav-arrows button {
  background:linear-gradient(45deg, #ff4d6d, #ff2661);
  color:white;
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:24px;
  font-weight:bold;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(255,77,109,0.4);
  transition:all 0.3s ease;
}

.nav-arrows button:hover {
  transform:scale(1.1);
  box-shadow:0 12px 30px rgba(255,77,109,0.6);
}

/* RESPONSIVE */
@media (max-width:768px) {
  .gallery-grid {
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:15px;
  }
  
  .navbar {
    flex-direction:column;
    gap:10px;
    padding:15px;
  }
  
  .nav-links {
    order:3;
    width:100%;
    justify-content:center;
  }
  
  .navbar input {
    width:100%;
    max-width:300px;
  }
}

/* TESTIMONIAL STYLES */
.testimonial-container {
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
}

.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));
  gap:30px;
}

.testimonial-card {
  background:linear-gradient(145deg, #fff, #fffaf5);
  padding:30px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  position:relative;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
  border:1px solid rgba(255,77,109,0.1);
  overflow:hidden;
}

.testimonial-card::before {
  content:'"';
  position:absolute;
  top:20px;
  left:25px;
  font-size:80px;
  color:rgba(255,77,109,0.15);
  font-weight:bold;
  line-height:1;
  z-index:0;
}

.testimonial-card:hover {
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-card > * {
  position:relative;
  z-index:1;
}

.stars {
  color:#ffaa00;
  font-size:20px;
  margin-bottom:15px;
  text-shadow:0 1px 3px rgba(255,170,0,0.3);
}

.testimonial-card p {
  font-style:italic;
  color:#555;
  line-height:1.6;
  font-size:16px;
  margin:0 0 25px 0;
  position:relative;
}

.author {
  display:flex;
  align-items:center;
  gap:15px;
}

.avatar {
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #ff4d6d;
  box-shadow:0 4px 15px rgba(255,77,109,0.3);
}

.author h4 {
  margin:0;
  color:#ff4d6d;
  font-size:18px;
}

.author span {
  color:#888;
  font-size:14px;
}

.testimonial-card:nth-child(1) { animation:fadeInUp 0.6s ease 0.1s both; }
.testimonial-card:nth-child(2) { animation:fadeInUp 0.6s ease 0.2s both; }
.testimonial-card:nth-child(3) { animation:fadeInUp 0.6s ease 0.3s both; }
.testimonial-card:nth-child(4) { animation:fadeInUp 0.6s ease 0.4s both; }
.testimonial-card:nth-child(5) { animation:fadeInUp 0.6s ease 0.5s both; }
.testimonial-card:nth-child(6) { animation:fadeInUp 0.6s ease 0.6s both; }
.testimonial-card:nth-child(7) { animation:fadeInUp 0.6s ease 0.7s both; }
.testimonial-card:nth-child(8) { animation:fadeInUp 0.6s ease 0.8s both; }

@keyframes fadeInUp {
  from {
    opacity:0;
    transform:translateY(30px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:768px) {
  .testimonials-grid {
    grid-template-columns:1fr;
    gap:20px;
  }
  
  .testimonial-card {
    padding:25px 20px;
  }
}
