:root {
  --color-primary: #E63946;
  --color-dark: #1D1D1D;
  --color-light: #FFFFFF;
  --color-blue: #2563EB;
  --color-yellow: #F4D35E;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background-color: #FAFAFA;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Typography Utilities */
.text-primary-color { color: var(--color-primary); }
.text-blue { color: var(--color-blue); }
.text-yellow { color: var(--color-yellow); }
.bg-dark-color { background-color: var(--color-dark); color: var(--color-light); }
.bg-primary-color { background-color: var(--color-primary); color: var(--color-light); }

/* Buttons */
.btn-custom-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-custom-primary:hover {
  background-color: #c92a36;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-custom-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-custom-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
}

.btn-whatsapp-cta {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.btn-whatsapp-cta:hover {
  background-color: #1ebc59;
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  color: var(--color-light);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #FAFAFA;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.carousel-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  position: relative;
}

.carousel-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: white;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

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

.gallery-overlay h4 {
  color: var(--color-yellow);
  font-size: 1.2rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-overlay p {
  color: white;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.modal-content {
  background-color: transparent;
  border: none;
}
.modal-body {
  padding: 0;
  position: relative;
}
.modal-body img {
  width: 100%;
  border-radius: 10px;
}
.btn-close-white {
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background-color: var(--color-dark);
  color: white;
  position: relative;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-list li i {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

/* Uses Section */
.uses-section {
  padding: 80px 0;
}

.use-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.use-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
  transform: translateY(-5px);
}

.use-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.use-card:hover .use-icon {
  background-color: var(--color-blue);
  color: white;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-top: 5px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.price span {
  font-size: 1.5rem;
  color: #6c757d;
  font-weight: 600;
}

.urgency-alert {
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--color-primary);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(0,0,0,0.05);
}

.stars {
  color: var(--color-yellow);
  margin-bottom: 15px;
}

/* Mother's Day Special */
.mothers-day-section {
  padding: 60px 0;
  background: linear-gradient(45deg, #e91e63, var(--color-primary));
  color: white;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 90%;
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 20px;
}

footer h5 {
  color: white;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

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

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Animation Classes */
.hidden-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-scroll {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
    text-align: center;
  }
  .price {
    font-size: 2.5rem;
  }
}
