:root {
  --moon-light-soft: #CCCCFF;
  --moon-light-mid: #A3A3CC;
  --moon-light-deep: #5C5C99;
  --moon-light-dark: #292966;
  --moon-light-night: #1F1F33;
  --moon-light-glow: #E6E8FF;
  --moon-light-gradient: linear-gradient(145deg, #5C5C99 0%, #7B7BBA 50%, #4A4A80 100%);
  --moon-dark: #0a0f1f;
  --moon-deep: #1b263b;
  --moon-soft: #415a77;
  --moon-mid: #778da9;
  --moon-glow: #e0e1dd;
  --moon-accent: #90c2ff;

  /* === Section theme variables === */
  --menu-bg: var(--moon-light-night);
  --hero-bg: var(--moon-light-dark);
  --services-bg: var(--moon-light-mid);
  --about-bg: var(--moon-light-deep);
  --contact-bg: var(--moon-light-glow);
  --footer-bg: var(--moon-light-dark);
}

/* font settings */
.delius-regular {
  font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-family: 'Delius', sans-serif;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  color: var(--moon-light-glow);
  overflow-x: hidden;
}

/* ===== GLOBAL ===== */
.container {
  margin: auto;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: whitesmoke;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 1s ease, color 1s ease;
}


#logo {
  width: 6rem;
  height: 6rem;
  position: absolute;
  margin: -3rem -1rem;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  /* button-like padding */
  border-radius: 8px;
  /* rounded corners for button feel */
  color: var(--moon-light-deep);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
}

/* Hover effect - button style */
nav ul li a:hover {
  color: white;
  font-weight: 500;
  background-color: var(--moon-light-deep);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  /* more prominent depth */
  transform: translateY(-3px);
  /* lift effect */
}

/* Optional: add smooth background transition */

nav ul li a:hover::after {
  opacity: 1;
}

.menu-toggle {
  display: none;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-bg);
  overflow: hidden;
  text-align: center;
  padding: 2rem;
  height: 85vh;
  background: linear-gradient(135deg, #d2d3d498, #c7c0e08e);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 90%;
  max-width: 1200px;
}

/* Dynamic animated background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.89), transparent 90%);
  /*animation: bgPulse 15s ease-in-out infinite alternate;*/
  z-index: 1;
}

@keyframes bgPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1) rotate(15deg);
    opacity: 0.85;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
}

/* Hero content overlay */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px) saturate(150%);
  background: linear-gradient(135deg, var(--moon-light-deep), var(--moon-dark));
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(92, 92, 153, 0.3) inset;
  animation: fadeUp 1.5s ease forwards;
}

/* Headline */
.hero-content h1 {
  color: var(--moon-light-glow);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glowText 2s ease-in-out infinite alternate;
}

.hero-content h1 span {
  color: var(--moon-light-soft);
  text-shadow: 0 0 25px var(--moon-light-soft)80%, 0 0 50px var(--moon-light-soft)50%;
}

/* Paragraph */
.hero-content p {
  color: #fff;
  font-size: 1.25rem;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* CTA button */
.hero-content .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--moon-light-soft), var(--moon-light-mid));
  color: var(--moon-light-dark);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.hero-content .btn:hover {
  transform: scale(1.08) translateY(-3px);
  background: linear-gradient(135deg, var(--moon-light-mid), var(--moon-light-soft));
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}


/* ===== Floating social icons ===== */
.social-icons {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}

.social-icons.left {
  margin-right: -2rem;
}

.social-icons.right {
  margin-left: -2rem;
}

.icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 25px var(--moon-light-soft)30%;
  animation: floatOrbit linear infinite;
}

.icon img {
  width: 20px;
  height: 20px;
  filter: none;
  opacity: 0.9;
}

.icon.facebook {
  animation-name: drift1;
  animation-duration: 12s;
  background: #1877F2;
}

.icon.twitter {
  animation-name: drift2;
  animation-duration: 14s;
  background: #1DA1F2;
}

.icon.pinterest {
  animation-name: drift3;
  animation-duration: 16s;
  background: #E60023;
}

.icon.instagram {
  animation-name: drift4;
  animation-duration: 13s;
  background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.icon.tiktok {
  animation-name: drift5;
  animation-duration: 15s;
  background: #000;
}

.icon.youtube {
  animation-name: drift6;
  animation-duration: 17s;
  background: #FF0000;
}

/* ===== SECTIONS ===== */
section {
  padding: 1rem 0;
}

section.light {
  background: var(--moon-light-glow);
  color: var(--moon-light-dark);
}

section.dark {
  background: var(--moon-light-dark);
  color: var(--moon-light-glow);
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: inherit;
}

/* TESTIMONIALS SECTION START*/

.chat-testimonials {
  padding: 0px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.section-title {
  font-size: 2.2rem;
  color: #075e54;
  margin-bottom: 40px;
}

.chat-container {
  margin: 0 auto;
  padding: 20px;
  background: #ece5dd;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  overflow: visible;
  /* allow animations to breathe */
  padding: 25px 0;
}

/* Chat Bubble Base */
.chat-bubble {
  max-width: 75%;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 18px;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-out;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Directions */
.chat-bubble.left {
  background: #ffffff;
  margin-right: auto;
  border-bottom-left-radius: 4px;
}

.chat-bubble.right {
  background: #dcf8c6;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-bubble.active {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0);
}

/* Random scatter entry */
.chat-bubble.random-left {
  transform: translateX(-20px) translateY(20px) rotate(-2deg);
}

.chat-bubble.random-right {
  transform: translateX(20px) translateY(20px) rotate(2deg);
}

/* Text styling */
.chat-bubble p {
  margin: 0;
  color: #333;
}

.author {
  font-size: 0.85rem;
  color: #777;
  text-align: right;
  display: block;
  margin-top: 8px;
}

/* Typing Indicator */
.typing-bubble {
  width: 60px;
  padding: 12px;
  background: #fff;
  margin: 10px 0;
  border-radius: 18px;
  display: none;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.typing-bubble .dot {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: typing 1s infinite;
}

.typing-bubble .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-bubble .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }

  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .chat-bubble.random-left {
    transform: translateX(-20px) translateY(20px) rotate(-2deg);
  }

  .chat-bubble.random-right {
    transform: translateX(20px) translateY(20px) rotate(2deg);
  }
}

/* TESTIMONIALS SECTION ENDS*/

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--moon-light-deep);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 12px 12px 0;
  border: none;
  border-bottom: 2px solid var(--moon-light-mid);
  outline: none;
  font-size: 16px;
  transition: 0.3s;
  background: transparent;
  color: inherit;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--moon-light-mid);
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
  top: -10px;
  font-size: 12px;
  color: var(--moon-light-soft);
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: var(--moon-light-soft);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  background: var(--moon-light-mid);
  color: var(--moon-light-glow);
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: var(--moon-light-deep);
}


/* RESPONSIVE */
@media (max-width: 768px) {

  /* ===== MOBILE MENU ===== */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
  }

  .menu-toggle div {
    width: 100%;
    height: 3px;
    background-color: var(--moon-light-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    z-index: 100;
  }

  .menu-toggle.open div:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.open div:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open div:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* FLY-IN EFFECTS */
.about-features li {
  opacity: 0;
}

.fly-left {
  transform: translateX(-100px);
}

.fly-right {
  transform: translateX(100px);
}

.fly-bottom {
  transform: translateY(100px);
}

.about-features li.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition: transform 0.8s ease, opacity 0.8s ease;
}


/* ===== BACK TO TOP ===== */

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



@media(max-width:768px) {

  header {
    padding: 1.6rem 2rem;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
  }

  .hero-content {
    width: fit-content;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stats,
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    position: fixed;
    top: 70px;
    transform: translateX(100%);
    width: 60%;
    height: max-content;
    background: var(--moon-light-dark);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transition: transform 0.4s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    background-color: var(--moon-dark);
    border-radius: 1rem;
    right: 0px;
  }


  nav ul.active {
    transform: translateX(0);
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  .lang-toggle {
    position: absolute;
    top: 15px;
    right: 60px;
  }
}

/* ===== KEYFRAMES ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgGlow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes drift1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(15px, -20px);
  }

  50% {
    transform: translate(-10px, 25px);
  }

  75% {
    transform: translate(20px, 15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift2 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-20px, 10px);
  }

  50% {
    transform: translate(25px, 20px);
  }

  75% {
    transform: translate(-15px, -15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift3 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(10px, 20px);
  }

  50% {
    transform: translate(-25px, 15px);
  }

  75% {
    transform: translate(15px, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift4 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-15px, 25px);
  }

  50% {
    transform: translate(20px, -15px);
  }

  75% {
    transform: translate(-10px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift5 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, 15px);
  }

  50% {
    transform: translate(-20px, -15px);
  }

  75% {
    transform: translate(10px, 25px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes drift6 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-25px, -15px);
  }

  50% {
    transform: translate(15px, 20px);
  }

  75% {
    transform: translate(-15px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}


/* =======================================================
   MOONLIGHT PALETTE ENHANCEMENTS — ABOUT / SERVICES / CONTACT
   ======================================================= */

/* ===== ABOUT SECTION (Light elegance) ===== */
.about-us {
  background: linear-gradient(to bottom, var(--moon-light-glow), var(--moon-light-soft));
  color: var(--moon-light-dark);
  position: relative;
}

.about-us::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--moon-light-dark), transparent);
}

.about-header h2 {
  color: var(--moon-light-deep);
  text-shadow: 0 0 15px rgba(92, 92, 153, 0.2);
}

.about-header p {
  color: var(--moon-light-night);
}

/* ===== CONTACT SECTION (Moonlit soft glow) ===== */
.contact-section {
  color: var(--moon-light-dark);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--moon-light-deep), transparent);
}

.contact-form {
  background: rgba(230, 232, 255, 0.85);
  border: 1px solid rgba(163, 163, 204, 0.4);
  box-shadow: 0 10px 40px rgba(41, 41, 102, 0.15);
}

.contact-form h2 {
  color: var(--moon-light-deep);
}

.input-group input,
.input-group textarea {
  border-bottom-color: var(--moon-light-deep);
  color: var(--moon-light-dark);
}

.input-group input:focus,
.input-group textarea:focus {
  border-bottom-color: var(--moon-light-mid);
}

.input-group label {
  color: var(--moon-light-mid);
}

button {
  background: var(--moon-light-deep);
  color: var(--moon-light-glow);
  box-shadow: 0 0 15px rgba(92, 92, 153, 0.3);
}

button:hover {
  background: var(--moon-light-mid);
  box-shadow: 0 0 25px rgba(163, 163, 204, 0.5);
}

/* ===========================================
   MOONLIGHT COLOR SCHEME FOR ALL SECTIONS
   =========================================== */

/* ===== HEADER / MENU ===== */
.site-header {
  background: whitesmoke;
  color: var(--menu-bg);
  transition: background 1s ease, color 1s ease;
}

header a,
.site-header a {
  color: var(--moon-light-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

header a:hover,
.site-header a:hover {
  color: var(--moon-light-soft);
}

/* ===== HERO SECTION ===== */


.hero-content h1 span {
  color: var(--moon-light-soft);
}

.hero-content .btn {
  background: var(--moon-light-soft);
  color: var(--moon-light-dark);
}

.hero-content .btn:hover {
  background: var(--moon-light-mid);
  color: var(--moon-light-glow);
}


/* ===== ABOUT US SECTION ===== */
.about-us,
.about-section {
  background: var(--about-bg);
  color: var(--moon-light-glow);
}

.about-header h2 {
  color: var(--moon-light-glow);
}

.about-header p {
  color: var(--moon-light-glow);
}

/* ===== CONTACT SECTION ===== */
#contact,
.contact,
.contact-section {
  color: var(--moon-light-glow);
}

.contact-form {
  background: var(--moon-light-deep);
  border-radius: 12px;
  color: inherit;
  transition: 0.3s;
}

.contact-form h2 {
  color: var(--moon-light-glow);
}

.contact-form button {
  background: var(--moon-light-deep);
  color: var(--moon-light-glow);
}

.contact-form button:hover {
  background: var(--moon-light-mid);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--moon-light-night);
  color: var(--moon-light-glow);
  padding: 4rem 2rem;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* FOOTER SECTIONS */
.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--moon-glow);
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 0.95rem;
  color: var(--moon-light-glow);
  text-decoration: none;
}

.footer-section li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  padding: 0;
}

.footer-section a:hover {
  color: var(--moon-light-soft);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(0.8);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 50px;
  background: var(--moon-light-mid);
  color: var(--moon-light-glow);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== CONTACT SECTION ===== */
#contact {
  color: var(--moon-light-glow);
  padding: 0rem 2rem 9rem 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}

.contact-form,
.contact-info {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--moon-light-glow);
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--moon-deep);
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--moon-dark);
}

.footer-section contact-info {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--moon-deep);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--moon-light-dark);
}

.contact-info i {
  color: var(--moon-light-glow);
  font-size: 1.2rem;
}

/* ===== FORM ELEMENTS ===== */
.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-bottom: 2px solid var(--moon-light-glow);
  color: white;
  font-size: 1rem;
  outline: none;
  border-radius: 6px;
  resize: none;
}

.input-group label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
  top: -0.6rem;
  left: 0.5rem;
  font-size: 0.8rem;
  color: var(--moon-light-glow);
}

/* ===== BUTTON ===== */
.contact-form button {
  background: var(--moon-light-glow);
  color: var(--moon-light-dark);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--moon-light-soft);
  color: white;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--moon-light-glow);
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--moon-light-soft);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info ul {
    display: inline-block;
    text-align: left;
  }
}

.section {
  opacity: 1;
  transform: translateY(100px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.email-btn {
  display: inline;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--moon-light-mid), var(--moon-light-deep));
  color: var(--moon-light-glow);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 8px 20px rgba(92, 92, 153, 0.35);
  transition: 0.3s ease;
}

.email-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(92, 92, 153, 0.45);
}


/* WhatsApp floating button start */
.whatsapp-float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* glued to very bottom */
  z-index: 200;
  width: 100%;
  height: 64px;
  /* bar height */
  padding: 0;
  /* no padding bottom or sides */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  /* full width bar = square corners */
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  transition: opacity 180ms ease;
  -webkit-tap-highlight-color: transparent;
  gap: 8px;

}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  pointer-events: none;
}

/* Hover effect (desktop) */
.whatsapp-float:hover {
  opacity: 0.92;
}

/* Tap feedback (mobile) */
.whatsapp-float:active {
  opacity: 0.85;
}

/* Tooltip above bar */
.whatsapp-tooltip {
  position: absolute;
  bottom: 72px;
  /* above the bar */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;

  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Show tooltip */
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.whatsapp-text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .whatsapp-float {
    height: 72px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* WhatsApp floating button END */



/* ---- FIX FOR 3 CARDS IN ONE ROW ---- */
/* RESET / GLOBAL */

body {
  background: #eef1f6;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* SECTION HEADERS */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -1px;
  text-align: center;
}


/* WRAPPER — KEEP 3 IN A ROW */
.offers-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 3em;
}

/* PACKAGE CARD — merged both versions */
.package {
  background: var(--moon-light-gradient);
  color: #fff;
  padding: 40px;
  border-radius: 22px;
  width: 32%;
  min-width: 500px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: 0.35s ease;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 25px);
  min-width: 250px;
  /* optional, prevents cards from getting too small */

}

.package::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(30px);
  overflow-x: hidden;
}

.package:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

/* TITLE */
.package-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1px;
  text-align: center;
}

/* PRICE */
.price {
  font-size: 1.8rem;
  color: #b8ffcf;
  font-weight: 700;
  margin: 0px 0 20px 0;
  text-align: center;
}

/* FEATURES LIST */
.package-details {
  list-style: none;
  margin: 20px 0;
}

.package-details li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 500;
}

.package-details li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #b8ffcf;
  font-weight: 800;
}

/* BUTTON */
.btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 25px;
}

.btn:hover {
  background: #222;
}

/* OPTIONAL SECTION */

.additions-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.mandatory-list {
  list-style: none;
  margin-top: 20px;
}

.mandatory-title {
  margin-top: 60px;
  font-size: 1.8rem;
  font-weight: 700;
}

.mandatory-list {
  list-style: none;
  margin-top: 20px;
}

.mandatory-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.mandatory-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #5C5C99;
  font-weight: 700;
}

.optional-title {
  margin-top: 60px;
  font-size: 1.8rem;
  font-weight: 700;
}

.optional-list {
  list-style: none;
  margin-top: 20px;
}

.optional-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.optional-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #5C5C99;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .offers-wrapper {
    flex-wrap: wrap;
  }

  .package {
    width: 48%;
  }
}

@media (max-width: 700px) {
  .package {
    width: 100%;
  }

  .section-title {
    text-align: center;
  }
}

#form-message {
  background: #e8ffe8;
  padding: 14px 18px;
  border-left: 4px solid #28a745;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #1e4620;
}

.social-links {
  display: none;
}