/* Base Styles - Keep existing */
body {
    display: block;
    margin: 0px !important;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Typography - Base */
.legalitere {
    font-family: "Legalitere";
}

.text-math {
    font-family: math;
}

.text-purple {
    color: #8A255E;
}

/* Colors */
.bg-pink {
    background-color: #fff5f5;
}

.bg-darkpink {
    background-color: #FFF2EF;
}

.bg-lightpurple {
    background: #5c1a55;
}

.bg-purple {
    background-color: #8A255E;
}

/* Banner Section */
.bg-banner {
    background: url(image/vivaana-banner.webp) no-repeat center center;
    background-size: cover;
    height: 100vh;
}

/* Form Container - Desktop */
.form-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 470px;
    max-height: 597px;
    position: absolute;
    right: 70px;
    bottom: 44px;
}

.form-container-mobile {
    background: white;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    position: relative;
}

.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 5px 12px;
    border: 1.5px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-input:focus {
    outline: none;
    border-color: #898989;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-input[readonly] {
    background: #ffffff !important;
    color: #94999e !important;
    cursor: default;
}

.form-input[readonly]:focus {
    border-color: #e1e5e9;
    box-shadow: none;
}

.consent-text {
    font-size: 11px;
    margin-bottom: 18px;
}

.consent-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #1b1851;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #1b1851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 27, 105, 0.3);
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Font Sizes */
.fs-11px {
    font-size: 11px;
}

.fs-22px {
    font-size: 25px;
}

.fs-22 {
    font-size: 22px;
}

.fs-45px {
    font-size: 45px;
}

.fs-60px {
    font-size: 60px;
}

/* Spacing */
.pt-130px {
    padding-top: 130px;
}

.pt-220px {
    padding-top: 210px;
}

.pb-334px {
    padding-bottom: 334px;
}

.p-custom {
    padding-top: 101px;
    padding-bottom: 85px;
}

.mt-143px {
    margin-top: 68px !important;
}

.gap-25px {
    gap: 25px;
}

/* Banner with Model - Desktop */
.banner {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.banner .model {
    position: absolute;
    left: -37px;
    bottom: 0;
    height: 648px;
    z-index: 5;
}

.banner .oval {
    position: absolute;
    right: 61px;
    top: 49%;
    transform: translateY(-50%);
    width: 67%;
    height: 451px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 1;
}

.banner .flower1 {
    position: absolute;
    width: 180px;
    z-index: 10;
}

.banner .flower2 {
    position: absolute;
    width: 279px;
    z-index: 10;
}

.banner .flower2.top {
    top: -32px;
    right: 40px;
}

.banner .flower1.bottom {
    bottom: 40px;
    left: 32%;
}

.banner .content {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    z-index: 20;
}

.curve {
    bottom: 140px;
    right: 573px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #333;
    margin-bottom: 40px;
}

.tab {
    padding: 15px 40px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    color: #333;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.tab:hover {
    background-color: #7a2470;
    color: white;
}

.tab.active {
    background-color: #5c1a55;
    color: white;
}

.tab:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #333;
}

/* Content Section */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.image-container {
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.amenities-container {
    padding: 20px;
}

.section-title {
    font-size: 32px;
    color: #5c1a55;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
}

.section-title span {
    margin: 0 10px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px 5px;
}

.amenity-item {
    list-style: none;
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    font-family: math;
}

.amenity-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-size: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

/* Nearby Locations */
.nearby-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #8A255E;
    margin-bottom: 50px;
    gap: 0;
}

.nearby-tab-btn {
    padding: 18px 45px;
    background: transparent;
    border: none;
    font-size: 20px;
    font-family: 'Georgia', serif;
    color: #8A255E;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-right: 2px solid #8A255E;
}

.nearby-tab-btn:last-child {
    border-right: none;
}

.nearby-tab-btn:hover {
    background: #7a2470;
    color: white;
}

.nearby-tab-btn.active-nearby {
    background: #5c1a55;
    color: white;
}

.nearby-content-wrapper {
    position: relative;
}

.nearby-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.nearby-tab-content.active-nearby {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nearby-image {
    width: 100%;
    position: relative;
}

.nearby-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nearby-list-container {
    padding: 20px;
}

.nearby-list {
    list-style: none;
    padding: 0;
}

.nearby-list li {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    font-family: math;
}

.nearby-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5c1a55;
    font-size: 28px;
    font-weight: bold;
}

/* Plot Details */
.plot-details {
    background: #ffe5e6;
    border-radius: 26px;
}

.top-288 {
    top: -278px;
}

/* FAQ Section */
.faq-container {
    padding: 30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #8A255E;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: math;
    text-align: left;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8A255E;
}

.faq-question:focus {
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    font-family: math;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 15px 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 15px 0 0;
}

.icon {
    font-size: 24px;
    margin-left: 15px;
    color: #1b1851;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27, 24, 81, 0.1);
}

.faq-item.active .icon {
    transform: rotate(45deg);
    background: rgba(27, 24, 81, 0.2);
    color: #2d2875;
}

.faq-question-text {
    flex: 1;
    padding-right: 10px;
}

/* Footer */
.footer {
    background-color: #8A255E;
    padding: 0.5rem 0 0.5rem 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-links li a {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in-left,
.fade-in-right,
.fade-in-top {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.8s ease-out;
}

.fade-in-top.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInTop 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {

    /* Banner */
    .bg-banner {
        background: none !important;
        height: auto;
    }

    /* Typography */
    .fs-60px {
        font-size: 28px !important;
    }

    .fs-45px {
        font-size: 26px !important;
    }

    .fs-22px {
        font-size: 16px !important;
    }

    .fs-22 {
        font-size: 16px !important;
    }

    p {
        font-size: 15px !important;
    }

    /* Form */
    .form-container-mobile {
        padding: 15px;
        width: 95%;
    }

    .form-title {
        font-size: 16px;
    }

    .form-input,
    .submit-btn {
        font-size: 13px;
        padding: 10px;
    }

    /* Banner with Model */
    .banner {
        min-height: auto;
        padding: 20px 0;
    }

    .banner .model {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .banner .oval {
        display: none;
    }

    .banner .flower1,
    .banner .flower2 {
        width: 80px;
    }

    .banner .flower2.top {
        top: 10px;
        right: 10px;
    }

    .banner .flower1.bottom {
        bottom: 10px;
        left: 10px;
    }

    .banner .content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    /* Spacing */
    .pt-130px {
        padding-top: 40px !important;
    }

    .pt-220px {
        padding-top: 40px !important;
    }

    .pb-334px {
        padding-bottom: 40px !important;
    }

    .p-custom {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .mt-143px {
        margin-top: 20px !important;
    }

    /* Tabs */
    .tab-navigation {
        flex-direction: column;
        border-bottom: none;
    }

    .tab {
        padding: 12px 20px;
        border-bottom: 1px solid #333;
        font-size: 14px;
        width: 100%;
    }

    .tab:not(:last-child)::after {
        display: none;
    }

    /* Content Section */
    .content-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .amenity-item {
        font-size: 14px;
        padding-left: 20px;
    }

    .amenity-item::before {
        font-size: 16px;
    }

    /* Nearby Locations */
    .nearby-tabs {
        flex-wrap: wrap;
        border-bottom: none;
    }

    .nearby-tab-btn {
        flex: 1 1 100%;
        font-size: 13px;
        padding: 12px 15px;
        border: 2px solid #8A255E;
        border-bottom: none;
    }

    .nearby-tab-btn:last-child {
        border-bottom: 2px solid #8A255E;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nearby-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 20px;
    }

    .nearby-list li::before {
        font-size: 20px;
    }

    /* Plot Details */
    .plot-details h4 {
        font-size: 14px !important;
    }

    .top-288 {
        position: relative !important;
        top: auto !important;
    }

    /* FAQ */
    .faq-container {
        padding: 15px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    /* Footer */
    .footer-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-text {
        font-size: 12px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links li a {
        font-size: 12px !important;
    }

    /* Hide decorative elements on mobile */
    .curve {
        display: none;
    }

    .position-absolute.top-0.end-0 img,
    .position-absolute.top-0.start-0 img {
        max-width: 80px;
    }
}

/* Tablet Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    /* Banner */
    .bg-banner {
        height: 60vh;
    }

    /* Typography */
    .fs-60px {
        font-size: 36px !important;
    }

    .fs-45px {
        font-size: 32px !important;
    }

    .fs-22px {
        font-size: 18px !important;
    }

    p {
        font-size: 16px !important;
    }

    /* Form */
    .form-container {
        max-width: 90%;
        right: 5%;
        bottom: 20px;
    }

    /* Banner with Model */
    .banner {
        min-height: 400px;
    }

    .banner .model {
        height: 450px;
        left: -20px;
    }

    .banner .oval {
        width: 60%;
        height: 350px;
    }

    .banner .content {
        width: 50%;
        right: 5%;
    }

    /* Spacing */
    .pt-130px,
    .pt-220px {
        padding-top: 60px !important;
    }

    .pb-334px {
        padding-bottom: 60px !important;
    }

    .p-custom {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Tabs */
    .tab {
        padding: 12px 25px;
        font-size: 16px;
    }

    /* Content Section */
    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .amenity-item {
        font-size: 15px;
    }

    /* Nearby Locations */
    .nearby-tab-btn {
        flex: 1 1 45%;
        padding: 15px 20px;
        font-size: 16px;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nearby-list li {
        font-size: 17px;
    }

    /* Plot Details */
    .plot-details {
        margin: 10px 0;
    }

    .top-288 {
        top: -150px;
    }
}

/* Medium Tablets & Small Laptops (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .fs-60px {
        font-size: 42px !important;
    }

    .fs-45px {
        font-size: 36px !important;
    }

    .banner .model {
        height: 550px;
    }

    .banner .content {
        width: 45%;
    }

    .form-container {
        max-width: 400px;
        right: 40px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nearby-grid {
        gap: 40px;
    }
    
}

/* Large Tablets (969px - 1199px) */
@media (min-width: 969px) and (max-width: 1199px) {
    .form-container {
        max-width: 420px;
        right: 50px;
    }

    .banner .model {
        height: 600px;
    }

    .fs-60px {
        font-size: 48px !important;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop - Small (1200px - 1535px) */
@media (min-width: 1200px) and (max-width: 1535px) {
    .form-container {
        max-width: 440px;
        right: 60px;
    }

    .banner .model {
        height: 600px;
    }
}

/* Desktop - Medium to Large (1536px+) */
@media (min-width: 1536px) {
    .form-container {
        max-width: 470px;
        right: 55px;
        bottom: 169px;
    }

    .banner .model {
        height: 648px;
    }
.bg-banner {
    height: 90vh;
}
   
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .bg-banner {
        height: auto;
    }

    .banner {
        min-height: auto;
    }

    .pt-130px,
    .pt-220px {
        padding-top: 40px !important;
    }
}

/* Extra Small Devices (very small phones) */
@media (max-width: 360px) {
    .fs-60px {
        font-size: 24px !important;
    }

    .fs-45px {
        font-size: 22px !important;
    }

    .fs-22px {
        font-size: 14px !important;
    }

    p {
        font-size: 13px !important;
    }

    .form-container-mobile {
        width: 98%;
        padding: 12px;
    }

    .nearby-tab-btn {
        font-size: 12px;
        padding: 10px 12px;
    }

    .faq-question {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {

    .form-container,
    .form-container-mobile,
    .footer {
        display: none;
    }
}
@media screen and (min-width: 960px) and (max-width: 1536px){
     .curve {
        right: 382px;
    }

       .top-288 {
        top: -216px;
    }
}

.pt-10rem{
    padding-top: 10rem;
}
.pb-5rem {
    padding-bottom: 30rem;
}
.vivaana-section {
  background: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.icon-circle {
  min-width: 48px;
  height: 48px;
  background: #5c6bc0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-list p {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: #222;
}

/* HERO IMAGE */
.hero-img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .feature-list p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .feature-list li {
    align-items: flex-start;
  }

  .icon-circle {
    min-width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .feature-list p {
    font-size: 15px;
  }
}
.info-strip {
  background: #fff7f2;
  padding: 18px 0;
}

.info-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 45px;
  justify-content: center;
}

.info {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.info.wide {
  white-space: normal;
}

.circle-icon {
  width: 38px;
  height: 38px;
  border: 2px solid #4f6fd8;
  border-radius: 50%;
  flex-shrink: 0;
}

.info p {
    margin: 0;
    font-size: 23px;
    color: #111;
}

.info span {
  color: #8A255E;
  font-weight: 600;
}

.info b {
  font-weight: 400;
  margin: 0 6px;
  color: #333;
}

/* Tablet */
@media (max-width: 992px) {
  .info-wrap {
    gap: 20px 30px;
  }
  .info p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .info {
    width: 100%;
    white-space: normal;
  }
}
.top-20px {
    top: 20px;
}
.bg-lightwhite{
    background: #f6f5f5;
}
.fs-20px{
    font-size: 20px;
}
.b-300px{
    border-radius: 300px;
}
body{
    background: #f6f5f5 !important;
}
.info-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.info-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: #5A67C8; /* change color if needed */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon-wrap img {
    width: 32px;
    height: 32px;
}

.info-text {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.4;
}

    .hidden-field {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }