:root {
  --primary: #1e3888;
  --accent: #43c59e;
  --button: #f2545b;
  --background: #f7faff;
  --subtitle: #ffb400;
  --shadow: 0 4px 18px 0 rgba(30, 56, 136, 0.10);
  --radius: 20px;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #212c4d;
  background: var(--background);
}
header {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),
    url('../HERO.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 90px 18px 35px 18px;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.star-burst {
  position: absolute;
  right: 35px;
  top: 25px;
  width: 140px;
  border-radius: 10px;
}
.proprietor-img {
  position: absolute;
  left: 40px;
  bottom: 15px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 24px rgba(30, 56, 136, 0.16);
  z-index: 2;
}
header h1 {
  font-size: 2.7em;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.15em;
  margin-top: 30px;
}
.subtitle {
  font-size: 1.25rem;
  color: var(--subtitle);
  font-weight: 600;
  letter-spacing: 1px;
}
header p {
  font-size: 1.07rem;
  margin-bottom: 1.6em;
  opacity: 0.95;
}
.cta-button {
  padding: 14px 45px;
  font-size: 1.23rem;
  background: linear-gradient(90deg, var(--button), var(--accent));
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.21s, transform 0.13s;
  margin-bottom: 1em;
  z-index: 2;
  position: relative;
}
.cta-button:hover {
  background: linear-gradient(90deg, var(--accent), var(--button));
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}
.toast {
  position: fixed;
  top: 25px;
  right: 18px;
  background: var(--button);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.07rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 999;
}
.toast.show { opacity: 1; pointer-events: auto; }

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 38px 18px 16px;
}
.section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 26px;
  margin-bottom: 34px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.section-image {
  flex: 1 1 220px;
  text-align: center;
  margin-right: 24px;
}
.section-image img {
  width: 135px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(67,197,158, 0.15);
}
.section-content {
  flex: 2 1 330px;
}
.section-content ul {
  margin-top: 13px;
  list-style: none;
  padding: 0;
}
.section-content ul li {
  background: #ecf5fb;
  color: var(--primary);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  box-shadow: 0 1px 10px rgba(30,56,136,0.04);
}
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.reviews-section {
  background: #f6fcfd;
  border-radius: var(--radius);
  margin-bottom: 38px;
  box-shadow: var(--shadow);
  padding: 32px 10px;
}
.reviews-title {
  text-align: center;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.carousel {
  position: relative;
  max-width: 670px;
  margin: auto;
}
.carousel-review {
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(67,197,158,0.06);
  padding: 24px 25px 14px 25px;
  text-align: left;
  min-height: 105px;
  color: #3b3b3b;
  animation: fadeIn 0.7s;
  position: relative;
}
.carousel-review.active {
  display: block;
}
.carousel-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin-right: 12px;
  box-shadow: 0 1px 6px rgba(30,56,136,0.07);
}
.carousel-author {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
  font-size: 1.03rem;
}
.carousel-stars {
  color: #ffd700;
  font-size: 1.1em;
}
.carousel-date {
  font-size: 0.98rem;
  color: #606060;
  font-weight: 600;
  margin-left: 6px;
}
.carousel-content {
  font-size: 1.04rem;
  margin-top: 8px;
  margin-left: 60px;
}
.carousel-btn {
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin: 0 7px;
  font-size: 1.3rem;
  color: #232c36;
  box-shadow: 0 2px 10px rgba(67,197,158,0.09);
  cursor: pointer;
  transition: background 0.17s;
}
.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
}

.contact {
  flex-direction: column;
  gap: 8px;
}
.contact iframe {
  margin-top: 12px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(30,56,136,0.09);
  width: 100%;
  height: 220px;
  border: none;
}
footer {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 18px 0 10px;
  font-size: 1.03rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: 36px;
}
@media (max-width: 768px) {
  header { padding: 50px 5px 18px; }
  .star-burst { right: 12px; top: 8px; width: 90px;}
  .proprietor-img { left: 10px; bottom: 7px; width: 60px; height: 60px;}
  .about, .section { flex-direction: column; gap: 18px;}
  .section-image { margin-right: 0; margin-bottom: 10px;}
  .carousel-content { margin-left: 0; }
  .carousel-review { padding: 14px 4px 12px 4px;}
}
@keyframes fadeIn { 0% { opacity:0; } 100% { opacity: 1; } }


.contact-form-section {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 22px;
  margin-bottom: 40px;
}
.contact-form-section h2 {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.contact-form label {
  font-weight: 600;
  color: var(--primary);
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  resize: vertical;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(67,197,158,0.2);
}
.contact-form button {
  align-self: flex-start;
  margin-top: 10px;
}

.gallery-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 24px 28px;
  margin-bottom: 40px;
}
.gallery-section h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,56,136,0.09);
  transition: transform 0.18s, box-shadow 0.16s;
  background: #f7f7fa;
}
.gallery-grid img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 22px rgba(67,197,158,0.16);
}
@media (max-width: 700px) {
  .gallery-grid {
    gap: 8px;
  }
  .gallery-section {
    padding: 16px 4px 12px;
  }
}



.logo {
  height: 80px; /* Adjust height as needed */
  width: auto;
  display: block;
  margin: 10px auto;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  animation: blink 1s infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Blinking Animation */
@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.5; }
  100% { opacity: 1; }
}
/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  animation: blink 1s infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Instagram Button */
.instagram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #E1306C;
  border-radius: 50%;
  padding: 12px;
  /* animation: blink 1s infinite; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.instagram-float img {
  width: 32px;
  height: 32px;
}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #25D366; /* WhatsApp green */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
