@charset "UTF-8";
/*!
 * Project Name: GreenField Lavender Landing Page
 * Author: Tamil de Selva
 * Version: 1.8.9
 * Description: Custom SCSS for layout, styling, and responsive design.
 * Created: 15 July 2025
 * Updated: 15 September 2025
 */
/* Plus Jakarta Sans */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Sacred Valley */
@font-face {
  font-family: "Sacred Valley";
  src: url("../fonts/sacred_valley/Sacred_Valley.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "sacred valley", serif;
}

p,
li,
a,
button {
  font-family: "plus jakarta sans", sans-serif;
}

::-moz-selection {
  background-color: rgba(157, 37, 168, 0.7568627451);
  color: rgb(230, 230, 230);
}

::selection {
  background-color: rgba(157, 37, 168, 0.7568627451);
  color: rgb(230, 230, 230);
}

::-webkit-scrollbar {
  width: 3px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #7f4da0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5f5f5f;
}

body,
a,
button,
textarea {
  cursor: url("../images/icons8-select-cursor-30.png"), auto;
}

main {
  /* Floating Button */
  /* Bounce animation */
  /* Glow effect */
}
main header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background-color: rgba(245, 245, 245, 0.916);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  /* Logo */
  /* Desktop Nav */
  /* Contact */
  /* Hamburger */
  /* Mobile Nav */
}
main header.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
main header:hover {
  background-color: #fff;
}
main header .logo img {
  width: 250px;
}
main header .nav-links {
  display: flex;
  gap: 50px;
  transition: all 0.4s ease;
}
main header .nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  padding: 5px 0;
  transition: color 0.4s ease;
}
main header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #7f4da0;
  transition: width 0.4s ease;
}
main header .nav-links a:hover::after {
  width: 100%;
}
main header .contact button {
  padding: 10px 20px;
  color: #7f4da0;
  border: 1px dashed #7f4da0;
  border-radius: 5px;
  transition: background-color 0.4s ease;
  background-color: #e7dbff;
}
main header .contact button:hover {
  background-color: #7f4da0;
  color: #fff;
}
main header .hamburger {
  display: none;
  z-index: 1100;
  cursor: pointer;
}
main header .hamburger .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
}
main header .hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
main header .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
main header .hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  main header {
    padding: 15px 20px;
  }
  main header .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    flex-direction: column;
    align-items: center;
    background: #111;
    width: 100%;
    padding: 40px 0;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
  }
  main header .nav-links a {
    color: #fff;
    font-size: 18px;
  }
  main header .nav-links.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
  main header .hamburger {
    display: block;
  }
  main header .contact {
    display: none;
  }
}
main .main-slider {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}
main .reasons-section {
  background: url(../images/Lavendar\ Brand\ Brochure\ Pg1_2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}
main .reasons-section .reasons-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
main .reasons-section .reasons-container h2 {
  font-size: 2rem;
  font-weight: 600;
  color: rgb(50, 50, 50);
  margin-bottom: 40px;
}
main .reasons-section .reasons-container h2 span {
  color: #7f4da0;
  font-size: 2.9rem;
}
main .reasons-section .reasons-container .reasons-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}
main .reasons-section .reasons-container .reasons-list .reason-item {
  max-width: 250px;
}
main .reasons-section .reasons-container .reasons-list .reason-item img {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
main .reasons-section .reasons-container .reasons-list .reason-item p {
  font-size: 1rem;
  color: black;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  width: 150px;
}
main .reasons-section .reasons-container .reasons-list .reason-item p::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #7f4da0;
  transition: width 0.3s ease;
  margin-top: 5px;
}
main .reasons-section .reasons-container .reasons-list .reason-item:hover img {
  transform: scale(1.05);
}
main .reasons-section .reasons-container .reasons-list .reason-item:hover p::after {
  width: 100%;
}
@media (max-width: 480px) {
  main .reasons-section {
    padding: 30px 10px;
  }
  main .reasons-section .reasons-container h2 {
    font-size: 1.3rem;
  }
  main .reasons-section .reasons-container .reasons-list {
    gap: 15px;
  }
  main .reasons-section .reasons-container .reasons-list .reason-item p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  main .reasons-section {
    padding: 40px 15px;
  }
  main .reasons-section .reasons-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  main .reasons-section .reasons-container .reasons-list {
    gap: 20px;
  }
  main .reasons-section .reasons-container .reasons-list .reason-item img {
    width: 40px;
  }
}
main .residence-section {
  display: flex;
  padding: 80px 5%;
  gap: 5%;
  align-items: center;
}
main .residence-section .left-content {
  flex: 1;
}
main .residence-section .left-content span {
  display: block;
  font-size: 12px;
  color: #5f5f5f;
  letter-spacing: 1px;
  font-family: "plus jakarta sans", sans-serif;
}
main .residence-section .left-content .stats {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
main .residence-section .left-content .stats div span {
  display: block;
  font-size: 12px;
  color: #7f4da0;
  letter-spacing: 1px;
  font-family: "plus jakarta sans", sans-serif;
}
main .residence-section .left-content .stats div h2 {
  font-size: 3.5rem;
  margin: 5px 0;
  font-weight: 400;
}
main .residence-section .left-content .download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: #7f4da0;
  font-weight: 400;
  border-bottom: 1px solid #7f4da0;
  text-decoration: none;
}
main .residence-section .left-content .download-link .icon {
  width: 20px;
  height: 20px;
  background: url("../images/file.png") no-repeat center;
}
main .residence-section .left-content h1 {
  font-size: 35px;
  color: #7f4da0;
  margin: 10px 0;
  font-weight: 500;
}
main .residence-section .left-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
main .residence-section .left-content .view-gallery {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #7f4da0;
  font-size: 14px;
  text-decoration: none;
  color: #7f4da0;
  transition: 0.3s;
}
main .residence-section .left-content .view-gallery:hover {
  border: 1px dashed #7f4da0;
}
main .residence-section .right-content {
  flex: 1;
  position: relative;
}
main .residence-section .right-content .img-stack {
  position: relative;
  width: 100%;
  height: auto;
}
main .residence-section .right-content .img-stack .img-back {
  width: 90%;
  display: block;
}
main .residence-section .right-content .img-stack .img-front {
  position: absolute;
  width: 50%;
  top: 40px;
  left: -20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease-out;
}
@media (max-width: 768px) {
  main .residence-section {
    flex-direction: column;
  }
  main .residence-section .left-content,
  main .residence-section .right-content {
    width: 100%;
  }
  main .residence-section .right-content {
    margin-top: 40px;
  }
  main .residence-section .right-content .img-stack .img-front {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
main .features-section {
  background-image: url(../images/Lavendar_Brand_Brochure_Pg1.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 50px 0;
}
main .features-section h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
}
main .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 0.3fr);
  gap: 20px;
  padding: 60px;
}
main .features-section .features-grid .active {
  background-color: #e9d3ff;
}
main .features-section .features-grid .grid-item {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 1px dashed #c183ff;
  background-color: #e9d3ff;
}
main .features-section .features-grid .grid-item:hover {
  transform: translateY(-5px);
  background-color: #e9d3ff;
}
main .features-section .features-grid .grid-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
main .features-section .features-grid .grid-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
main .features-section .features-grid .grid-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  main .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
    gap: 15px;
  }
  main .features-section .features-grid .grid-item h3 {
    font-size: 16px;
  }
  main .features-section .features-grid .grid-item p {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  main .features-section .features-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }
  main .features-section .features-grid .grid-item {
    padding: 15px;
    text-align: center;
  }
  main .features-section .features-grid .grid-item img {
    width: 40px;
    height: 40px;
  }
  main .features-section .features-grid .grid-item h3 {
    font-size: 15px;
  }
  main .features-section .features-grid .grid-item p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  main .features-section h1 {
    font-size: 2rem;
  }
}
main .property-gallery,
main .property-gallery1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 80px 2%;
  flex-wrap: wrap;
  margin: 0 50px;
  /* ✅ Mobile Responsive */
  /* ✅ Extra Small Devices */
}
main .property-gallery .gallery-left,
main .property-gallery1 .gallery-left {
  flex: 1;
  max-width: 600px;
}
main .property-gallery .gallery-left h2,
main .property-gallery1 .gallery-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
  color: #7f4da0;
}
main .property-gallery .gallery-left .description,
main .property-gallery1 .gallery-left .description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
main .property-gallery .gallery-left .info-blocks,
main .property-gallery1 .gallery-left .info-blocks {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
main .property-gallery .gallery-left .info-blocks div,
main .property-gallery1 .gallery-left .info-blocks div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  margin: 20px 0;
}
main .property-gallery .gallery-left .info-blocks div .img-re,
main .property-gallery1 .gallery-left .info-blocks div .img-re {
  height: 37px;
  margin-bottom: 20px;
}
main .property-gallery .gallery-left .info-blocks div p,
main .property-gallery1 .gallery-left .info-blocks div p {
  font-size: 12px;
  text-align: center;
}
main .property-gallery .gallery-left a button,
main .property-gallery1 .gallery-left a button {
  border: 1px dashed #c183ff;
  color: #c183ff;
  background-color: transparent;
  padding: 10px 15px;
}
main .property-gallery .gallery-left a button:hover,
main .property-gallery1 .gallery-left a button:hover {
  background-color: #c183ff;
  color: #fff;
}
main .property-gallery .gallery-right,
main .property-gallery1 .gallery-right {
  flex: 1;
  position: relative;
  max-width: 700px;
}
main .property-gallery .gallery-right .photo-carousel img,
main .property-gallery1 .gallery-right .photo-carousel img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main .property-gallery .gallery-right .photo-carousel .arrow,
main .property-gallery1 .gallery-right .photo-carousel .arrow {
  position: absolute;
  background-color: transparent;
  border: none;
  font-size: 24px;
  padding: 10px 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #7f4da0;
  border: 50%;
}
main .property-gallery .gallery-right .photo-carousel .arrow.left,
main .property-gallery1 .gallery-right .photo-carousel .arrow.left {
  left: 10px;
}
main .property-gallery .gallery-right .photo-carousel .arrow.right,
main .property-gallery1 .gallery-right .photo-carousel .arrow.right {
  right: 10px;
}
main .property-gallery .gallery-right .photo-carousel .arrow:hover,
main .property-gallery1 .gallery-right .photo-carousel .arrow:hover {
  background: #c183ff;
  border-radius: 50%;
  color: #fff;
}
@media (max-width: 768px) {
  main .property-gallery,
  main .property-gallery1 {
    flex-direction: column;
    margin: 0 20px;
    padding: 40px 5%;
  }
  main .property-gallery .gallery-left,
  main .property-gallery .gallery-right,
  main .property-gallery1 .gallery-left,
  main .property-gallery1 .gallery-right {
    max-width: 100%;
  }
  main .property-gallery .gallery-left,
  main .property-gallery1 .gallery-left {
    order: 2;
    text-align: center;
  }
  main .property-gallery .gallery-left h2,
  main .property-gallery1 .gallery-left h2 {
    font-size: 2rem;
  }
  main .property-gallery .gallery-left .description,
  main .property-gallery1 .gallery-left .description {
    font-size: 14px;
  }
  main .property-gallery .gallery-left .info-blocks,
  main .property-gallery1 .gallery-left .info-blocks {
    gap: 15px;
  }
  main .property-gallery .gallery-left .info-blocks div,
  main .property-gallery1 .gallery-left .info-blocks div {
    margin: 10px 0;
  }
  main .property-gallery .gallery-left .info-blocks div p,
  main .property-gallery1 .gallery-left .info-blocks div p {
    font-size: 11px;
  }
  main .property-gallery .gallery-right,
  main .property-gallery1 .gallery-right {
    order: 1;
  }
  main .property-gallery .gallery-right .photo-carousel img,
  main .property-gallery1 .gallery-right .photo-carousel img {
    max-height: 250px;
  }
}
@media (max-width: 480px) {
  main .property-gallery,
  main .property-gallery1 {
    padding: 30px 5%;
    margin: 0;
  }
  main .property-gallery .gallery-left h2,
  main .property-gallery1 .gallery-left h2 {
    font-size: 1.6rem;
  }
  main .property-gallery .gallery-left .description,
  main .property-gallery1 .gallery-left .description {
    font-size: 13px;
    line-height: 1.4;
  }
  main .property-gallery .info-blocks,
  main .property-gallery1 .info-blocks {
    flex-direction: column;
    gap: 10px;
  }
  main .property-gallery .gallery-right .photo-carousel img,
  main .property-gallery1 .gallery-right .photo-carousel img {
    max-height: 200px;
  }
}
main .floor-plan-section {
  padding: 80px 5%;
}
main .floor-plan-section > div {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
main .floor-plan-section > div > div:first-child {
  flex: 1;
  display: flex;
  justify-content: center;
}
main .floor-plan-section > div > div:first-child img {
  width: 100%;
  max-width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .floor-plan-section > div > div:last-child {
  flex: 1;
  max-width: 600px;
}
main .floor-plan-section > div > div:last-child p:first-child {
  color: #7f4da0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
main .floor-plan-section > div > div:last-child h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
}
main .floor-plan-section > div > div:last-child p:nth-of-type(2) {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
main .floor-plan-section > div > div:last-child > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
main .floor-plan-section > div > div:last-child > div > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .floor-plan-section > div > div:last-child > div > div > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .floor-plan-section > div > div:last-child > div > div > div img {
  width: 20px;
  height: 20px;
}
main .floor-plan-section > div > div:last-child > div > div > div p {
  font-size: 15px;
  color: #222;
}
main .floor-plan-section > div > div:last-child > div > div a {
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  color: #7f4da0;
  text-decoration: underline;
}
@media (max-width: 768px) {
  main .floor-plan-section > div {
    flex-direction: column;
  }
  main .floor-plan-section > div > div:first-child,
  main .floor-plan-section > div > div:last-child {
    max-width: 100%;
  }
  main .floor-plan-section > div > div:last-child h1 {
    font-size: 28px;
  }
  main .floor-plan-section > div > div:last-child p {
    font-size: 14px;
  }
}
main .floor-plan-btn-section {
  margin: 10px 0;
  text-align: center;
  margin-bottom: 30px;
}
main .floor-plan-btn-section .download-btn {
  padding: 10px 20px;
  background: #e7dbff;
  color: #7f4da0;
  border-radius: 4px;
  border: 1px dashed #7f4da0;
}
main .location-section {
  padding: 60px 20px;
  background: #f8f8f8;
  /* Left Text Section */
  /* Right Map Section */
  /* Responsive Styles */
}
main .location-section .location-content {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}
main .location-section .location-text {
  flex: 1;
  min-width: 300px;
  /* Location Advantages */
}
main .location-section .location-text .sub-heading {
  font-size: 14px;
  color: #8a5dc1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}
main .location-section .location-text h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}
main .location-section .location-text .description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
main .location-section .location-text .location-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
main .location-section .location-text .location-points li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}
main .location-section .location-text .location-points li strong {
  color: #8a5dc1;
  font-weight: 700;
  margin-right: 4px;
}
main .location-section .location-text .location-advantages {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
main .location-section .location-text .location-advantages .advantage-column {
  flex: 1;
  min-width: 220px;
}
main .location-section .location-text .location-advantages .advantage-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #8a5dc1;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(138, 93, 193, 0.2);
}
main .location-section .location-text .location-advantages .advantage-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
main .location-section .location-text .location-advantages .advantage-column ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  transition: color 0.2s ease;
}
main .location-section .location-text .location-advantages .advantage-column ul li span {
  color: #8a5dc1;
  font-weight: 500;
}
main .location-section .location-text .location-advantages .advantage-column ul li:hover {
  color: #000;
}
main .location-section .location-text .location-advantages .advantage-column ul li:hover span {
  color: #5f3a9e;
}
main .location-section .location-map {
  flex: 1;
  min-width: 300px;
}
main .location-section .location-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
main .location-section .location-map iframe:hover {
  transform: scale(1.02);
}
@media (max-width: 992px) {
  main .location-section .location-content {
    flex-direction: column;
  }
  main .location-section .location-map iframe {
    height: 350px;
  }
}
@media (max-width: 576px) {
  main .location-section {
    padding: 40px 15px;
  }
  main .location-section .location-text h2 {
    font-size: 22px;
  }
  main .location-section .location-text .description {
    font-size: 14px;
  }
  main .location-section .location-map iframe {
    height: 280px;
  }
}
main .contact-section {
  padding: 100px 5%;
  background: url(../images/plain_bg.jpg) no-repeat center center/cover;
}
main .contact-section .contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
main .contact-section .contact-info {
  flex: 1;
  min-width: 280px;
}
main .contact-section .contact-info h2 {
  font-size: 35px;
  margin: 20px 0;
  font-weight: 500;
}
main .contact-section .contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-weight: 300;
}
main .contact-section .contact-info ul {
  list-style: none;
  padding: 0;
}
main .contact-section .contact-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}
main .contact-section .contact-info ul li strong {
  color: #7f4da0;
}
main .contact-section .contact-form {
  flex: 1;
  min-width: 320px;
}
main .contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "plus jakarta sans", sans-serif;
}
main .contact-section .contact-form form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
main .contact-section .contact-form form .form-row .form-group {
  flex: 1;
  position: relative;
}
main .contact-section .contact-form form .form-group.full {
  width: 100%;
  position: relative;
}
main .contact-section .contact-form form .form-group.floating input,
main .contact-section .contact-form form .form-group.floating textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 14px 10px 6px;
  font-size: 15px;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
}
main .contact-section .contact-form form .form-group.floating label {
  position: absolute;
  left: 10px;
  top: 14px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.3s ease;
}
main .contact-section .contact-form form .form-group.floating input:focus + label,
main .contact-section .contact-form form .form-group.floating input:valid + label,
main .contact-section .contact-form form .form-group.floating textarea:focus + label,
main .contact-section .contact-form form .form-group.floating textarea:valid + label {
  top: -10px;
  font-size: 13px;
  color: #7f4da0;
}
main .contact-section .contact-form form .form-group.floating textarea {
  resize: vertical;
  min-height: 100px;
}
main .contact-section .contact-form form .styled-btn {
  background: #7f4da0;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 14px 25px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}
main .contact-section .contact-form form .styled-btn:hover {
  background: rgb(99.6708860759, 60.4303797468, 125.5696202532);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  main .contact-section .contact-container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  main .contact-section .contact-container {
    flex-direction: column;
  }
  main .contact-section .form-row {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  main .contact-section {
    padding: 60px 20px;
  }
  main .contact-section .contact-info h2 {
    font-size: 28px;
  }
  main .contact-section .contact-info p {
    font-size: 14px;
  }
}
main .rera-section {
  text-align: center;
  font-weight: 300;
  margin: 20px 0;
}
main .rera-section p {
  font-size: 16px;
  font-family: "plus jakarta sans", sans-serif;
  color: #7f4da0;
  padding: 5px 0;
}
main footer {
  text-align: center;
  font-weight: 300;
}
main footer small {
  font-size: 10px;
  font-family: "plus jakarta sans", sans-serif;
}
main .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
main .modal-content {
  background: url(../images/Lavendar_Brand_Brochure_Pg1.jpg);
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}
main .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  font-weight: bold;
}
main .modal-styled-btn {
  background: #7f4da0;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 14px 25px;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}
main .modal-styled-btn:hover {
  background: #643c7e;
  transform: translateY(-2px);
}
main input,
main textarea {
  font-family: "plus jakarta sans", sans-serif;
}
main textarea {
  resize: none;
}
main .floating-download-btn {
  position: fixed;
  bottom: 35px;
  right: 20px;
  background: linear-gradient(180deg, #a57ac1, #7f4da0 100%);
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: bounce 1.5s infinite, pulseGlow 2s infinite;
  z-index: 10000;
  transition: transform 0.2s ease;
  font-family: "plus jakarta sans", sans-serif;
}
main .floating-download-btn:hover {
  transform: scale(1.08);
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(127, 77, 160, 0.2), 0 0 20px rgba(127, 77, 160, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(127, 77, 160, 0.6), 0 0 40px rgba(127, 77, 160, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(127, 77, 160, 0.4), 0 0 20px rgba(127, 77, 160, 0.8);
  }
}/*# sourceMappingURL=style.css.map */