
    :root {
      /* Base Font Sizes (Mobile First) */
      --font-h1: 2rem;
      --font-h2: 1.75rem;
      --font-h3: 1.5rem;
      --font-p: 1rem;

      /* Font Weights */
      --font-regular: 400;
      --font-semibold: 600;
      --font-bold: 700;
    }

    /* Tablet Breakpoint */
    @media (min-width: 768px) {
      :root {
        --font-h1: 2.5rem;
        --font-h2: 2rem;
        --font-h3: 1.75rem;
        --font-p: 1.125rem;
      }
    }

    /* Desktop Breakpoint */
    @media (min-width: 1024px) {
      :root {
        --font-h1: 3rem;
        --font-h2: 2.5rem;
        --font-h3: 2rem;
        --font-p: 1.125rem;
      }
    }

    h1 {
      font-size: var(--font-h1);
      font-weight: var(--font-bold);
      line-height: 1.2;
      margin-bottom: 0.5em;
    }

    h2 {
      font-size: var(--font-h2);
      font-weight: var(--font-semibold);
      line-height: 1.3;
      margin-bottom: 0.5em;
    }

    h3 {
      font-size: var(--font-h3);
      font-weight: var(--font-semibold);
      line-height: 1.4;
      margin-bottom: 0.5em;
    }

    p {
      font-size: var(--font-p);
      font-weight: var(--font-regular);
      line-height: 1.6;
      margin-bottom: 1em;
    }


    h1 {
      text-align: center;
      margin-bottom: 20px
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: calc(100% - 20px);
      padding: 10px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px
    }

    input[type="submit"] {
      width: 50%;
      padding: 10px;
      border: 0;
      border-radius: 5px;
      background-color: #007bff;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      display: block;
      margin: 0 auto
    }

    input[type="submit"]:hover {
      background-color: #0056b3
    }

    .thank-you {
      text-align: center;
      margin-top: 50px
    }

    .thank-you h1 {
      color: #007bff
    }

    .thank-you p {
      font-size: 18px;
      color: #333
    }

    .thank-you .btn-primary {
      text-decoration: none;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 16px
    }

    .thank-you .btn-primary:hover {
      background-color: #0056b3
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto
    }

    .blog-card {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform .3s ease
    }

    .blog-card:hover {
      transform: scale(1.03)
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px
    }

    .blog-card a {
      display: block;
      margin-top: 10px;
      font-size: 1.2rem;
      color: #007bff;
      text-decoration: none
    }

    .blog-card a:hover {
      text-decoration: underline
    }

    @media(max-width:1024px) {
      .blog-container {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:768px) {
      .blog-container {
        grid-template-columns: 1fr
      }

      /*h1 {*/
      /*  font-size: 1.8rem*/
      /*}*/

      .blog-card {
        padding: 10px
      }

      .blog-card img {
        height: 180px
      }

      .blog-card a {
        font-size: 1rem
      }
    }

    @media(max-width:480px) {
      /*h1 {*/
      /*  font-size: 1.5rem*/
      /*}*/

      .blog-container {
        padding: 10px
      }

      .blog-card {
        padding: 8px
      }

      .blog-card img {
        height: 150px
      }
    }

    .offer-container {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .offer-img {
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform .3s ease-in-out
    }

    .offer-img:hover {
      transform: scale(1.05)
    }

    .offer-form-wrapper {
      background-color: #f5f5f5;
      color: #333;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      animation: fadeInUp .6s ease
    }

    .offer-title {
      font-size: 1.75rem;
      margin-bottom: 20px;
      font-weight: bold;
      color: #34495e;
      letter-spacing: .5px;
      text-align: center
    }

    .form-input {
      width: 100%;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 12px 15px;
      font-size: 1rem;
      background-color: #fff;
      box-sizing: border-box;
      transition: border .3s ease
    }

    .form-input:focus {
      border-color: #2980b9;
      outline: 0
    }

    .offer-btn {
      background-color: #2980b9;
      color: white;
      padding: 12px;
      border-radius: 30px;
      font-weight: bold;
      transition: background-color .3s ease
    }

    .offer-btn:hover {
      background-color: #1a5276;
      cursor: pointer
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .section-config {
      padding: 40px 0
    }

    .title-config {
      margin-bottom: 20px;
      text-align: center
    }

    .heading-config {
      font-size: 28px;
      font-weight: bold;
      color: #333
    }

    .table-config {
      border-collapse: collapse;
      width: 100%;
      text-align: center;
      color: #333;
      margin: auto
    }

    .header-cell {
      background: #ff8100;
      color: #fff;
      padding: 10px;
      font-weight: bold
    }

    .row-even {
      background: #ededed
    }

    .row-odd {
      background: #fff
    }

    .cell-config {
      padding: 12px;
      font-size: 16px;
      color: #5c5c5c
    }

    .button-inquire {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold
    }

    .button-inquire:hover {
      background-color: #555
    }
 
    .master-plan-section {
      background: #f4f4f9
    }

    .master-plan-title {
      /*font-size: 2.5rem;*/
      /*font-weight: 700;*/
      color: #333
    }

    .master-plan-image {
      border-radius: 10px;
      transition: transform .3s ease-in-out;
      max-width: 43%
    }

    .master-plan-image:hover {
      transform: scale(1.05)
    }

    .master-plan-button {
      font-weight: bold;
      padding: .6rem 1.5rem;
      color: #fff;
      background-color: #ff9f1c;
      border: 0;
      border-radius: 5px;
      transition: background-color .3s ease
    }

    .master-plan-button:hover {
      background-color: #ff851c
    }

    .floor-plan-card {
      border: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform .3s ease-in-out
    }

    .floor-plan-card:hover {
      transform: translateY(-10px)
    }

    .floor-plan-img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px
    }

    .card-body {
      padding: 1.5rem;
      background: #fff
    }

    .floor-plan-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #333
    }
 
    .master-plan-image {
      filter: blur(4px)
    }
    
    
    
    
    
    
    
    
    
    /* Main Section */
.main-section {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(135deg, #1c1c1c, #333);
  color: #fff;
  width: 100%;
  margin-top: 20px;
}

/* Left Content */
.left-content {
  flex: 1;
  min-width: 320px;
  max-width: 60%;
  padding: 20px;
  margin: 0 20px;
  text-align: left;
}

/* Headings */
.headings {
  /*font-size: 2.5rem;*/
  margin-bottom: 15px;
  color: #ffffff;
}

.subheading {
  /*font-size: 1.2em;*/
  margin-bottom: 30px;
  padding: 0 15px;
  color: #fff;
}

/* Call-to-Action Buttons */
.cta-buttons {
  margin-top: 40px;
}

.cta-button {
  padding: 12px 25px;
  font-size: 1em;
  text-decoration: none;
  background: #fafafa;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background: #e0a800;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Right Content */
.right-content {
  flex: 1;
  min-width: 320px;
  max-width: 35%;
  padding: 20px;
  margin: 0 20px;
}

/* Form Container */
.form-container {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header h2 {
  /*font-size: 1.8rem;*/
  margin-bottom: 10px;
}

.form-header p {
  /*font-size: 1rem;*/
  color: #333;
}

/* Form Group */
.form-group {
  margin-bottom: 15px;
}

.form-container input,
.form-container textarea {
  width: 100%; /* Ensure full width */
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #000;
  box-sizing: border-box;
}

/* Textarea Styling */
.form-container textarea {
  height: 50px; /* Set a height for the textarea */
  resize: vertical; /* Allow vertical resizing */
}

.feedback_go {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  background-color: #1e7e34;
  color: white;
  border: none !important;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
}

.feedback_go:hover,
.feedback_go:focus,
.feedback_go:active {
  background-color: #19692c;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* Responsive Design */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    padding: 20px;
  }

  .left-content,
  .right-content {
    max-width: 100%;
    padding: 0 15px;
  }

  .headings {
    /*font-size: 2rem;*/
    text-align: center;
  }

  .subheading {
    /*font-size: 1.1rem;*/
    text-align: center;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .main-section {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .left-content {
    flex: 1;
    min-width: 380px;
    max-width: 100%;
    padding: 20px;
    text-align: center;
  }

  .right-content {
    flex: 1;
    min-width: 380px;
    max-width: 100%;
    padding: 20px;
  }

  .headings {
    /*font-size: 1.6rem;*/
    text-align: center;
  }

  .subheading {
    /*font-size: 1rem;*/
    padding: 0 10px;
    text-align: center;
  }

  .cta-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cta-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .form-container {
    padding: 15px;
    width: 90%;
  }

  /*.form-header h2 {*/
  /*  font-size: 1.5rem;*/
  /*}*/

  /*.form-header p {*/
  /*  font-size: 0.9rem;*/
  /*}*/

  .form-container input,
  .form-container textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .form-container button {
    /*font-size: 1rem;*/
    padding: 12px;
  }
}

    
    
    
    
    
  
  
  .containers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

/* Project Overview Section */
.overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.overview-text {
  flex: 1;
}

.overview-text h2 {
  /*font-size: 2.5rem;*/
  color: #1e8449;
  margin-bottom: 15px;
}

.overview-text p {
  /*font-size: 1.1rem;*/
  margin-bottom: 20px;
  color: #555;
}



.overview-image {
  flex: 1;
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Highlights Section */
.highlights {
  margin-top: 30px;
}

.highlights h2 {
  /*font-size: 2rem;*/
  color: #34495e;
  margin-bottom: 15px;
  text-align: center;
}

/* Highlight List Styling */
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual Highlight Item */
.highlight-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #27ae60;
  transition: transform 0.3s;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-item span {
  display: block;
  font-weight: bold;
  color: #1e8449;
  /*font-size: 1.1rem;*/
  margin-bottom: 8px;
}

.highlight-item p {
  color: #555;
  /*font-size: 1rem;*/
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

@media (max-width: 768px) {
  .overview {
    flex-direction: column;
    text-align: center;
  }

  .overview-image img {
    margin: 0 auto;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight-item {
    width: 320px;
  }
}

  
  
  
  
  
  
  
  
.amenities-section {
  padding: 80px 40px;
  /* background-color: #f4f6f8; */
  border-radius: 15px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  /*font-size: 36px;*/
  /*font-weight: bold;*/
  color: #1e3932;
  margin-bottom: 10px;
}

.subtitle {
  /*font-size: 1.2em;*/
  color: #555;
  margin-bottom: 30px;
}

.amenities-title {
  /*font-size: 28px;*/
  /*font-weight: 600;*/
  color: #2f8a6c;
  margin-bottom: 40px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.amenity-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.amenity-item:hover {
  transform: translateY(-8px);
  background-color: #2f8a6c;
  color: #fff;
}

.amenity-item i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #2f8a6c;
  transition: 0.3s;
}

.amenity-item:hover i {
  color: #fff;
  transform: scale(1.2);
}

.amenity-item p {
  /*font-size: 16px;*/
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  /*.section-title {*/
  /*  font-size: 25px;*/
  /*}*/

  /*.amenities-title {*/
  /*  font-size: 24px;*/
  /*}*/

  .amenity-item {
    padding: 20px;
  }

  .amenity-item i {
    font-size: 36px;
  }
}



  
 
 
 
 
 
 
 
  /* Location Section */
.location-section {
  padding: 50px 20px;
  background-color: #f7f9fc;
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 40px;
}

.header-section .section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #264653;
  margin-bottom: 20px;
}

.header-section .subtitle {
  font-size: 1.2em;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 15px;
}

.header-section .location-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #2a9d8f;
}

/* Main Content Container */
.location-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side Content */
.location-content {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.location-content .location-subtitle {
  font-size: 1.5em;
  font-weight: 600;
  color: #2a9d8f;
  margin-bottom: 10px;
}

.location-description {
  font-size: 1.2em;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-highlights {
  font-size: 1.1em;
  color: #6c757d;
  list-style-type: none;
  padding: 0;
}

.location-highlights li {
  margin-bottom: 10px;
}

/* Right Side: Google Map */
.location-map {
  flex: 1;
  max-width: 600px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    gap: 20px;
  }

  .location-map {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 768px) {
    .header-section .section-title {
    font-size: 1.5rem;
    /* font-weight: 700; */
    color: #264653;
    /*margin-bottom: 20px;*/
}
}
 
  
  
  
  
  
  
  
  
/* gallery */

h1 {
  text-align: center;
  margin: 30px 0;
  /*font-size: 2.5rem;*/
  color: #2E7D32; /* Improved contrast */
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-title {
  text-align: center;
  margin: 20px 0;
  /*font-size: 1.8rem;*/
  color: #333; /* Or adjust color as needed */
}

.subtitle {
  /*font-size: 1.2em;*/
  font-weight: 400;
  color: #343a40; /* Maximum contrast */
  margin-bottom: 30px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 300px; /* Fixed height for uniform card size */
}

.gallery-item img {
  width: 100%;
  height: 100%; /* Ensures all images are of equal height */
  object-fit: cover; /* Maintains aspect ratio while covering the space */
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  /*font-size: 1.2rem;*/
  border-radius: 8px;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.gallery-item:hover .overlay {
  visibility: visible;
}

.contact {
  text-align: center;
  margin-top: 40px;
}

.contact button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact button:hover {
  background-color: #45a049;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /*h1 {*/
  /*  font-size: 2rem;*/
  /*}*/

  .contact button {
    /*font-size: 1rem;*/
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  /*h1 {*/
  /*  font-size: 1.5rem;*/
  /*}*/

  .contact button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

  
  
  
  
  
  
  
   /* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f7f9fc;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #2a9d8f;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.2em;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 30px;
}

.pricing-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05); /* Slight scale effect for hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #264653;
  margin-bottom: 10px;
}

.area, .price {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 15px;
}

.area strong, .price strong {
  color: #264653;
}

/* Buttons */
.offer-btn, .interest-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.offer-btn {
  background: #2a9d8f;
  color: #ffffff;
}

.offer-btn:hover {
  background: #21867a;
}

.interest-btn {
  background: #e9c46a;
  color: #ffffff;
}

.interest-btn:hover {
  background: #d4a64a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    gap: 20px;
  }
}

  @media (max-width: 480px) {
  .section-title {
     font-size: 26px; 
    /* font-weight: bold; */
    /*color: #1e3932;*/
    margin-bottom: 10px;
}
}
  
  
  
  
  
  
  
    
    
    
    
    /* Fixed button wrapper */
.enquiry-btn-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1001;
  padding-right: 5px;
}

/* Vertical button */
.enquiry-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  transition: background-color 0.3s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  min-height: 100px;
  min-width: 35px;
}

.enquiry-btn:hover {
  background-color: #0056b3;
}

/* Enquiry Form Container */
.enquiry-form-container {
  position: fixed;
  top: 50%;
  right: 20px; /* Shift form left by reducing right space */
  transform: translate(100%, -50%) scale(0.98); /* Initially slide out */
  width: 100%;
  max-width: 340px;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 999;
}

.enquiry-form-container.active {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
}

/* Enquiry Form Content */
.enquiry-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.enquiry-form button {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  border: none;
  color: white;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
}

.enquiry-form button:hover {
  background-color: #218838;
}

/* Close Button */
.close-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  font-weight: bold;
  color: red;
  float: right;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 500px) {
  .enquiry-btn-wrapper {
    right: 0;
  }

  .enquiry-btn {
    font-size: 12px;
    padding: 10px 6px;
    min-height: 90px;
    min-width: 30px;
  }

  .enquiry-form-container {
    width: 90%;
    max-width: 90%;
    top: 10%;
    right: 10px;
    transform: translateX(100%) scale(0.98);
    opacity: 0;
  }

  .enquiry-form-container.active {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}