*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#fff;
}

/* TOP BAR */
.top-bar{
  background:green;
  color:#fff;
  text-align:center;
  padding:6px;
  font-size:14px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Buttons */
.contact-buttons a {
  text-decoration: none;
  padding: 8px 16px;
  margin-left: 10px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}

.call-btn {
  background: #007bff;
}

.whatsapp-btn {
  background: #25D366;
}

/* Hamburger */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #111;
  padding-top: 30px;
  transition: 0.3s;
  z-index: 1001;
}

.sidebar.active {
  left: 0;
}

.sidebar a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.close-btn {
  color: #fff;
  font-size: 26px;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

/* Overlay */
/* .overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
} */

.overlay.active {
  display: block;
}

/* Mobile Footer */
/* Default: Desktop */
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 999;
}

/* Mobile only */
@media (max-width: 768px) {
  .mobile-footer {
    display: flex;
  }
}


.mobile-footer a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile View */
@media (max-width: 768px) {
  .nav-links,
  .contact-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-footer {
    display: flex;
  }
}
.spa-zen-banner {
  position: relative;
  height: 100vh;
  background: url("assets/Balinese Massage.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

/* Dark + soft overlay */
.zen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 31, 28, 0.65),
    rgba(15, 31, 28, 0.85)
  );
  z-index: 1;
}

/* Floating circles */
.zen-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(155, 231, 196, 0.18);
  filter: blur(3px);
  animation: float 9s ease-in-out infinite;
  z-index: 2;
}

.zen-circle.one {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 8%;
}

.zen-circle.two {
  width: 260px;
  height: 260px;
  bottom: 12%;
  right: 10%;
  animation-delay: 2s;
}

.zen-circle.three {
  width: 120px;
  height: 120px;
  top: 55%;
  right: 32%;
  animation-delay: 4s;
}

/* Content */
.zen-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding-left: 8%;
  color: #eaf2ed;
  animation: contentIn 1.6s ease forwards;
}

.zen-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #9be7c4;
  margin-bottom: 22px;
  display: inline-block;
}

.zen-content h1 {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 26px;
}

.zen-content h1 span {
  color: #9be7c4;
}

.zen-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 45px;
  opacity: 0.92;
}

/* Button */
.zen-btn {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid #9be7c4;
  color: #9be7c4;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: 0.4s ease;
}

.zen-btn:hover {
  background: #9be7c4;
  color: #0f1f1c;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-35px) scale(1.05);
  }
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .spa-zen-banner {
    height: 90vh;
  }

  .zen-content {
    padding: 0 6%;
  }

  .zen-content h1 {
    font-size: 2.4rem;
  }
}



/* about */

.spa-about {
  padding: 120px 0;
  background: #f7fdf9;
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}

.spa-about-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* Left Image */
.spa-about-img {
  flex: 1;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideLeft 1.4s ease forwards;
}

.spa-about-img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Right Content */
.spa-about-content {
  flex: 1;
  opacity: 0;
  transform: translateX(80px);
  animation: slideRight 1.4s ease forwards;
  animation-delay: 0.3s;
}

.about-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #4caf82;
  margin-bottom: 20px;
  display: inline-block;
}

.spa-about-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #1f3d36;
}

.spa-about-content h2 span {
  color: #4caf82;
}

.spa-about-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5f58;
  margin-bottom: 22px;
  max-width: 480px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 38px;
  border: 1px solid #4caf82;
  color: #4caf82;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: 0.4s ease;
}

.about-btn:hover {
  background: #4caf82;
  color: #fff;
}

/* Animations */
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .spa-about-inner {
    flex-direction: column;
    gap: 50px;
  }

  .spa-about-content h2 {
    font-size: 2.4rem;
  }

  .spa-about-content p {
    max-width: 100%;
  }
}

/* Base hidden state */
.reveal {
  opacity: 0;
  transition: all 1s ease;
}

/* Directions */
.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-up {
  transform: translateY(60px);
}

.reveal-zoom {
  transform: scale(0.85);
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* services */


.therapy-section{
  padding:90px 30px 100px;
  background:radial-gradient(circle at top, #111, #1c1623);
  text-align:center;
  color:#fff;
  font-family:"Segoe UI", sans-serif;
}

.therapy-section h2{
  font-size:26px;
  font-weight:600;
  margin-bottom:10px;
}

.therapy-underline{
  width:70px;
  height:2px;
  background:#fff;
  margin:0 auto 50px;
}

.therapy-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:45px 30px;
  max-width:1100px;
  margin:0 auto;
}

.therapy-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.therapy-item .icon{
  font-size:34px;
  filter:grayscale(100%) brightness(200%);
}

.therapy-item p{
  font-size:13px;
  line-height:1.4;
  max-width:140px;
}

/* Responsive */
@media(max-width:900px){
  .therapy-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:480px){
  .therapy-grid{
    grid-template-columns:1fr;
  }
}


*{box-sizing:border-box;margin:0;padding:0;font-family:Segoe UI,Arial,sans-serif}
.services{padding:80px 20px;background:#fff;text-align:center}
.services h2{color:green;font-size:26px;font-weight:600}
.services .line{display:block;width:70px;height:2px;background:green;margin:12px auto 40px}

.cards{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px
}

.card{
  background:#fff;border-radius:8px;overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.15)
}
.card img{width:100%;height:170px;object-fit:cover}
.card h3{font-size:15px;padding:12px 10px;color:#111}

.meta{
  background:red;color:#fff;
  display:flex;justify-content:space-between;
  padding:8px 12px;font-size:12px
}

.actions{
  display:flex;gap:10px;justify-content:center;
  padding:10px;background:#f6f6f6
}
.actions a{
  text-decoration:none;font-size:12px;
  padding:6px 12px;border-radius:4px
}
.call
.wa{background:#1ebc45;color:#fff}

@media(max-width:900px){
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .cards{grid-template-columns:1fr}
}


.spa-footer{
  background:black;
  color:#fff;
  padding-top:50px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.footer-box h3{
  font-size:22px;
  margin-bottom:10px;
}

.footer-box h4{
  margin-bottom:12px;
  font-size:16px;
}

.footer-box p{
  font-size:14px;
  line-height:1.6;
  color:#ddd;
}

.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  font-size:14px;
  margin-bottom:8px;
}

.footer-box ul li a{
  color:#ddd;
  text-decoration:none;
  transition:.3s;
}

.footer-box ul li a:hover{
  color:#fff;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  margin-top:40px;
  background:rgb(21, 21, 21);
  font-size:13px;
  color:#ccc;
}

@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}


/* category */

.services-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #222;
}

.underline {
  width: 80px;
  height: 4px;
  background: #b58e5f;
  margin: 15px auto 50px;
  border-radius: 2px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #b58e5f;
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* Icon container */
.service-icon {
  width: 70px;
  height: 70px;
  background: #b58e5f;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
}

/* Image holder */
.service-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

/* Custom icons */
.service-icon.spa::after {
  background-image: url("assets/img-3.jpeg");
}

.service-icon.massage::after {
  background-image: url("assets/Aroma%20Massage.png");
}

.service-icon.wellness::after {
  background-image: url("assets/Healing Touch.png");
}

/* Text */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  font-size: 14px;
  color: green;
  margin-bottom: 6px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* Responsive */
  @media (max-width: 992px) {
    .services-grid {
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .services-grid {
      flex-direction: column;
      align-items: center;
    }
  }


  /* ===== Container ===== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
}

/* ===== Form Box ===== */
.contact-form-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Mobile map height */
@media (max-width: 768px) {
  .contact-map iframe {
    height: 400px; /* smaller height on mobile */
  }
}

.contact-form-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}

.contact-form-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

/* ===== Floating Labels ===== */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.floating-label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease all;
}

.contact-input:focus + .floating-label,
.contact-input:not(:placeholder-shown) + .floating-label,
.contact-textarea:focus + .floating-label,
.contact-textarea:not(:placeholder-shown) + .floating-label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  color: red;
  background: #fff;
  padding: 0 5px;
}

/* ===== Inputs & Textarea ===== */
.contact-input, .contact-textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.contact-input:focus, .contact-textarea:focus {
  outline: none;
  border-color: red;
  box-shadow: 0 0 10px rgba(0,123,255,0.25);
}

/* ===== Appointment Select ===== */
.contact-select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.contact-select:focus {
  outline: none;
  border-color: red;
  box-shadow: 0 0 10px rgba(0,123,255,0.25);
}

/* ===== Button ===== */
.contact-btn {
  background-color: red;
  color: #fff;
  font-size: 16px;
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* ===== Map ===== */
.contact-section {
  display: flex;
  flex-wrap: nowrap; /* keep columns side by side on desktop */
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Left Form */
.contact-form-box {
  width: 450px; /* fixed width for form */
  background: #fff;
  padding: 50px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

/* Right Map */
.contact-map {
  flex-grow: 1; /* take remaining space */
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeMap 1s 0.5s ease forwards;
}


@keyframes fadeMap {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-form-box, .contact-map {
    width: 100%;
  }
  .contact-form-row {
    flex-direction: column;
  }}
.actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.actions a {
  padding: 12px 26px;
  border-radius: 6px;   /* simple shape */
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

/* Red Call Button */
.call {
  background-color: #e53935;
}

/* Green WhatsApp Button */
.wa {
  background-color: #25D366;
}

/* Simple Hover */
.call:hover {
  background-color: #c62828;
}

.wa:hover {
  background-color: #1ebe5d;
}

/* Mobile */
@media (max-width: 600px) {
  .actions {
    flex-direction: column;
    align-items: center;
  }

  .actions a {
    width: 80%;
    text-align: center;
  }
}



/* contactus */



/* Contact Us Section */
.contact-us {
  padding: 80px 6%;
  background: #f7fdf8; /* light greenish-white */
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-section {
  display: flex;
  gap: 30px;
  align-items: stretch; /* important */
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 12px;
}



.contact-left select {
  padding: 16px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  resize: none;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Left: Form */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 32px;
  color: #2a6b4f;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left input,
.contact-left textarea {
  padding: 12px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  transition: all 0.3s ease;
}

.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #3fa066;
  box-shadow: 0 0 8px rgba(63,160,102,0.2);
  outline: none;
}

.contact-left button {
  padding: 12px 20px;
  border: none;
  background: #2a6b4f;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-left button:hover {
  background: #3fa066;
  transform: translateY(-3px);
}

/* Right: Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  height: 680px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.animate-left,
.animate-right {
  opacity: 1;
  transform: translateX(0);
}


.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Left: Form */
.contact-left input,
.contact-left textarea {
  padding: 18px 20px;       /* increased padding */
  border: 1px solid #2a6b4f;
  border-radius: 12px;      /* slightly bigger radius */
  font-size: 16px;          /* larger font */
  resize: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-left input {
  height: 50px;             /* bigger input height */
}

.contact-left textarea {
  height: 150px;             /* bigger textarea */
}

/* Button */
.contact-left button {
  padding: 16px 25px;        /* bigger clickable area */
  font-size: 18px;           /* larger text */
  border-radius: 12px;
}


/* contactus */



/* Contact Us Section */
.contact-us {
  padding: 80px 6%;
  background: #f7fdf8; /* light greenish-white */
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-section {
  display: flex;
  gap: 30px;
  align-items: stretch; /* important */
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 12px;
}



.contact-left select {
  padding: 16px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  resize: none;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Left: Form */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 32px;
  color: #2a6b4f;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left input,
.contact-left textarea {
  padding: 12px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  transition: all 0.3s ease;
}

.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #3fa066;
  box-shadow: 0 0 8px rgba(63,160,102,0.2);
  outline: none;
}

.contact-left button {
  padding: 12px 20px;
  border: none;
  background: #2a6b4f;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-left button:hover {
  background: #3fa066;
  transform: translateY(-3px);
}

/* Right: Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  height: 680px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.animate-left,
.animate-right {
  opacity: 1;
  transform: translateX(0);
}


.animate-left.active,
.animate-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Left: Form */
.contact-left input,
.contact-left textarea {
  padding: 18px 20px;       /* increased padding */
  border: 1px solid #2a6b4f;
  border-radius: 12px;      /* slightly bigger radius */
  font-size: 16px;          /* larger font */
  resize: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-left input {
  height: 50px;             /* bigger input height */
}

.contact-left textarea {
  height: 150px;             /* bigger textarea */
}

/* Button */
.contact-left button {
  padding: 16px 25px;        /* bigger clickable area */
  font-size: 18px;           /* larger text */
  border-radius: 12px;
}

