:root {
    --primary-color: #1a1f36;
    --secondary-color: #c4b998;
    --accent-color: #e9d5b7;
    --light-color: #ffffff;
    --dark-color: #000000;
    --gradient-primary: linear-gradient(135deg, #c1ac8d, #9a733c);
    --gradient-accent: linear-gradient(135deg, #e8e8e8, var(--accent-color));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #443935;
    background-color: #443936;
    border-color: #443936;
}
.btn-outline-primary {
    --bs-btn-color: #1a1f36;
    --bs-btn-border-color: #aa9e7a;
    --bs-btn-hover-color: #1a1f36;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #aa9e7a;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #1a1f36;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #aa9e7a;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #cfcfcf;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #cfcfcf;
    --bs-gradient: none;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

.underline {
text-decoration: underline !important;
}
/* Modern Card Styling */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}
.project-features{
    font-size: 1.2rem;
    list-style: none;
    padding-left: 0;
}

.project-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.project-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c4b998;
    font-weight: bold;
    font-size: 1.2em;
}
/* Navigation */
.navbar {
    background-color: transparent;
    padding: 25px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    margin: -46px 0px 0px 0px;
    position: relative;
}

.logo-dark, .logo-light {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.logo-dark {
    opacity: 0;
}

.logo-light {
    opacity: 1;
}

.navbar.scrolled .logo-dark {
    opacity: 1;
}

.navbar.scrolled .logo-light {
    opacity: 0;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding:5px 20px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #ffffff;
    
    background: #bfb6a9;
}
/* Hero Section */
.hero-section {
    height: 60vh;
    background: url('/content/67002042d5e6ea8f5a6f298a.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-color);
    position: relative;
}
.hero-content {    
    padding: 0px 25px;
    display: flex ;
    background: linear-gradient(317deg, #00000059, #dddddd1c, #0000006e);
        backdrop-filter: blur(4px);
        height: -webkit-fill-available;
        flex-direction: column;
        justify-content: center;
        align-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
}
.hero-section .overlay {
    background: linear-gradient(to right, rgba(26,31,54,0.9) 30%, rgba(26,31,54,0.7));
}
.hero-section .subheadline b{
     font-weight: 500 !important;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
 

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.scroll-down {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down a {
    padding-top: 60px;
    color: var(--light-color);
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid var(--light-color);
    border-bottom: 1px solid var(--light-color);
    transform: rotate(-45deg);
    animation: scrollDown 2s infinite;
    box-sizing: border-box;
}
.glightbox-container .gslider {

    max-width: 80%;
    margin:0  auto !important;
  
}
@keyframes scrollDown {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-height: 100%;
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

/* Amenity Cards */
.amenity-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover img {
    transform: scale(1.05);
}

.amenity-content {
    padding: 20px;
}

.amenity-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Headers */
.section-padding h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding .lead {
    color: #7d755e;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-section h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Virtual Tour */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Unit Types */
#units{
    background-color: #1a1f36;
}

.unit-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}
.unit-card .btn-outline-primary{
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 4px; 
}
.unit-card:hover {
    transform: translateY(-10px);
}

.unit-image {
    position: relative;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card:hover .unit-image img {
    transform: scale(1.05);
}

/* GLightbox link for unit images */
.unit-image a:not(.unit-magnify-btn):not(.unit-floorplan-btn) {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.unit-image a:not(.unit-magnify-btn):not(.unit-floorplan-btn):hover {
    text-decoration: none;
    color: inherit;
}

.unit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: #1a1f36de;
    color: white;
}

.unit-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.unit-content {
    padding: 20px;
}

.unit-features {
   
    text-align: left;
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 15px auto;
}

.unit-features li {
    padding: 5px 0;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Location Section */
.location-info {
    padding: 30px;
    background: white;
    border-radius: 10px;
 
    height: 100%;
}

.location-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.location-features li {
    padding: 10px 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.location-features i {
    margin-right: 15px;
    color: var(--primary-color);
}

.location-map {
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

/* Button Styling */
.btn-primary {
    background: var(--gradient-accent);
    border: 1px solid #d1c4b0;
    /* border: none; */
    color: var(--primary-color);
    font-weight: 600;
    padding: 18px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    color: #443935;
    background-color: #443936;
    border-color: #443936;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover::after {
    transform: translateX(100%);
    transition: transform 0.75s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 10px;
    }
    
    .navbar-nav .nav-link {
        color: var(--primary-color);
    }

    .amenity-card img {
        height: 200px;
    }

    .feature-card {
        margin-bottom: 30px;
        transform: none !important;
        transition: none !important;
    }

    .feature-card img,
    .amenity-card img,
    .gallery-item img {
        transform: none !important;
        transition: none !important;
    }

    .unit-image img {
        height: 180px;
    }

    .location-map {
        margin-top: 30px;
    }

    /* Disable animations on mobile */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .feature-card:hover,
    .amenity-card:hover,
    .unit-card:hover {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .btn-primary:hover {
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .hero-content {    

        padding: 0px 25px;
         display: block;
            background: none;
            backdrop-filter: none;
            height: auto;
           
             
    }
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .amenity-card img {
        height: 180px;
    }

    .unit-image img {
        height: 160px;
    }
}

/* Animation Settings */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
} 
@media (max-width: 580px) {
    .glightbox-container .gslider {
   
        max-width: 95%;
      
    }
    .section-padding h2 {
        font-size: 2rem;
        
    }
.hero-section {
    height: 85vh;
    background-position: -115px center;
    background-size: cover;
    color: #fff;
    position: relative;
}

}

/* Project Carousel Styling */
.project-image .carousel {
    border-radius: 10px;
    overflow: hidden;
}

.project-image .carousel-indicators {
    position: static;
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
    height: 18px;;
    justify-content: center;
    gap: 8px;
}

.project-image .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #35280099;
    background-color: transparent;
     
    transition: all 0.3s ease;
    text-indent: -999px;
    overflow: hidden;
}

.project-image .carousel-indicators button.active {
    background-color: #c4b998;
    border-color: #c4b998;
 
    transform: scale(1.2);
}

.project-image .carousel-indicators button:hover {
    background-color: rgba(196, 185, 152, 0.7);
    border-color: rgba(196, 185, 152, 0.7);
    opacity: 1;
}

.project-image .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .project-image .carousel-item img {
        height: 250px;
    }
    
    .project-image .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .project-image .carousel-indicators {
        margin: 10px 0 0 0;
    }
}

/* Feature Image Links Styling */
.feature-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-image-link img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.feature-image-link:hover img {
    transform: scale(1.05);
}

.feature-image-link::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(196, 185, 152, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-image-link:hover::after {
    opacity: 1;
}

/* GLightbox Custom Styling */
.glightbox-clean .gslide-description {
    background: #e1dad5;
    color: #1a1f36;
        padding: 20px;
    border-radius: 10px;
    margin: 10px auto;
    font-size: 1rem;
    line-height: 1.5;
}

.glightbox-clean .gslide-title {
    color: #5c4b42;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.glightbox-clean .gslide-desc {
color: #5c4b42;
    font-size: 1.1rem;

}

/* Investment Section - Independent Card Heights */
#investment .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#investment .col-md-4 {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

#investment .feature-card {
    flex: 1;
    height: auto;
    min-height: auto;
}

/* Read More Accordion Styling */
.read-more-accordion {
    margin-top: 15px;
    border: 1px solid #af9369;
    border-radius: 10px;
    overflow: hidden;
}

.read-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af9369;
    padding: 12px 15px;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid transparent;
    outline: none;
    user-select: none;
    background: transparent;
    margin: 0;
}

.read-more-link:hover {
    background: rgba(175, 147, 105, 0.1);
    color: #af9369;
    transform: none;
    box-shadow: none;
}

.read-more-link.active {
       /* border-bottom: 1px solid #af9369; */
       background: rgb(255 255 255 / 5%);
}

.read-more-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link.active i {
    transform: rotate(180deg);
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
    border-radius: 0;
    margin-top: 0;
    opacity: 0;
    background: #fff;
}

.read-more-content.active {
    max-height: fit-content;
    padding: 15px;
    opacity: 1;
    /* max-height will be set dynamically by JavaScript */
}

.read-more-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .read-more-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .read-more-content {
        font-size: 0.9rem;
    }
}

/* Feature Card Header Layout */
.feature-card {
    position: relative;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c4b998, #a89775);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    
    position: relative;
    -webkit-text-fill-color: #ffffff;
}

.feature-icon i {
    color: #1a1f36 !important;
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    text-shadow: none;
    display: inline-block;
    line-height: 1;
}

/* Fallback for when Font Awesome doesn't load */
.feature-icon::before {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
}

.feature-card h3 {
    margin: -20px 0 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1f36;
    line-height: 1.2;
    flex: 1;
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Prevent scroll jumping during animations */
html, body {
    scroll-behavior: auto; /* Override when using jQuery animations */
}

/* Scroll down button styling */
.scroll-down {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    user-select: none;
}

/* Investment Comparison Section */
#comparison {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#comparison .container {
    position: relative;
    z-index: 2;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(196, 185, 152, 0.1);
}

/* Comparison Headers */
.comparison-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
        background: #f8f9fa;
    position: relative;
}

.comparison-headers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.comparison-header {
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
}

.comparison-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--secondary-color);
}

.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #a98a5c;
}

.comparison-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: #1a1f36; 
}

.comparison-header.daily-rental {
    
}

.comparison-header.multifamily {
    
}

/* Comparison Grid */
.comparison-grid {
    padding: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
    position: relative;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(196, 185, 152, 0.02);
}

.comparison-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 33.333%;
    width: 1px;
    height: 100%;
    background: #e9ecef;
}

.comparison-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 66.666%;
    width: 1px;
    height: 100%;
    background: #e9ecef;
}

.benefit-category {
    padding: 25px 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-color);
    border-right: 1px solid #e9ecef;
}

.benefit-category i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.daily-rental-benefit,
.multifamily-benefit {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.benefit-content {
    width: 100%;
}

.benefit-rating {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border: 1px solid;
}

.benefit-rating.excellent {
    background: #a98b60;
    color: #ffffff;
    border-color: var(--accent-color);
 
}

.benefit-rating.moderate {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.benefit-rating.poor {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.benefit-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #6c757d;
}

.daily-rental-benefit .benefit-content p {
    color: #495057;
}

/* Comparison CTA */
.comparison-cta {
    
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    color:var(--primary-color);
    position: relative;
    overflow: hidden;
}

.comparison-cta h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-cta .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color:var(--primary-color);
    position: relative;
    z-index: 2;
}

.comparison-cta .btn {
    position: relative;
    max-width: 320px;
    z-index: 2;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comparison-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.virtual-tour-btn{
    max-width: 320px;
}
#contact{
    background: #f8f9fa;
}
/* Responsive Design */
@media (max-width: 991px) {
    .comparison-headers {
        grid-template-columns: 1fr;
    }
    
    .comparison-headers::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
    }
    
    .comparison-header {
        padding: 30px 25px;
    }
    
    .comparison-header h3 {
        font-size: 1.5rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comparison-row::before,
    .comparison-row::after {
        display: none;
    }
    
    .benefit-category {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        background: var(--primary-color);
        color: white;
        padding: 20px 25px;
    }
    
    .benefit-category i {
        color: var(--accent-color);
    }
    
    .daily-rental-benefit,
    .multifamily-benefit {
        padding: 20px 25px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .daily-rental-benefit {
        background: rgba(196, 185, 152, 0.05);
        border-left: 4px solid var(--secondary-color);
    }
    
    .multifamily-benefit {
        background: rgba(26, 31, 54, 0.05);
        border-left: 4px solid var(--primary-color);
    }
    
    .comparison-cta {
        padding: 40px 30px;
    }
    
    .comparison-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .comparison-container {
        border-radius: 15px;
        margin: 0 15px;
    }
    
    .comparison-header {
        padding: 25px 20px;
    }
    
    .comparison-header i {
        font-size: 2rem;
    }
    
    .comparison-header h3 {
        font-size: 1.3rem;
    }
    
    .benefit-category {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .benefit-category i {
        font-size: 1rem;
    }
    
    .daily-rental-benefit,
    .multifamily-benefit {
        padding: 15px 20px;
        min-height: 70px;
    }
    
    .benefit-rating {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .comparison-cta {
        padding: 30px 20px;
    }
    
    .comparison-cta h3 {
        font-size: 1.5rem;
    }
    
    .comparison-cta .lead {
        font-size: 1rem;
    }
    
    .comparison-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-container {
        margin: 0 10px;
        border-radius: 10px;
    }
    
    .comparison-header {
        padding: 20px 15px;
    }
    
    .benefit-category {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .daily-rental-benefit,
    .multifamily-benefit {
        padding: 12px 15px;
        min-height: 60px;
    }
    
    .benefit-rating {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
    
    .comparison-cta {
        padding: 25px 15px;
    }
    
    .comparison-cta h3 {
        font-size: 1.3rem;
    }
    
    .comparison-cta .lead {
        font-size: 0.95rem;
    }
}

/* Modern Gallery Section */
#gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Gallery Filter Buttons */
.filter-btn {
    background: transparent;
    border: 2px solid rgba(196, 185, 152, 0.3);
    color: #666;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    background: rgba(196, 185, 152, 0.1);
    border-color: #c4b998;
    color: #c4b998;
    transform: translateY(-2px);
    box-shadow: none;
}

.filter-btn:hover i {
    transform: scale(1.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #c4b998, #a89775);
    border-color: #c4b998;
    color: white;
    box-shadow: none;
}

.filter-btn.active i {
    transform: scale(1.1);
}

/* Gallery Grid */
.gallery-grid {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 33.333%;
    flex: 0 0 33.333%;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Gallery Cards - Republic Window Style */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(196, 185, 152, 0.3);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 185, 152, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay - Republic Window Style */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 31, 54, 0.85) 0%,
        rgba(196, 185, 152, 0.75) 100%
    );
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Add subtle border glow effect */
.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    pointer-events: none;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
    z-index: 3;
    position: relative;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content i {
    transform: scale(1.1);
}

.gallery-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Republic Window Style Gallery Animation States */
.gallery-grid {
    transition: opacity 0.3s ease;
}

.gallery-grid.filtering {
    opacity: 0.7;
    pointer-events: none;
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gallery-item.gallery-hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    position: absolute;
    left: -9999px;
}

.gallery-item.gallery-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
    left: auto;
}

/* Smooth filter button transitions */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    transform: translateY(-2px);
    box-shadow: none;
}

/* Gallery loading state - Republic Window Style */
.gallery-grid.filtering {
    position: relative;
}

.gallery-grid.filtering::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(196, 185, 152, 0.3);
    border-top: 3px solid #c4b998;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
    background: white;
    box-shadow: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.gallery-grid.filtering .gallery-item {
    transition-duration: 0.2s;
}

/* Professional filter button count badges */
.filter-btn {
    position: relative;
}

.filter-btn[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c4b998;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    box-shadow: none;
}

/* Desktop and Tablet Layout */
@media (min-width: 769px) {
    .gallery-item {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
}

/* Mobile Responsive */
/* Gallery Filter Buttons - Optimized for Mobile */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
}

/* Desktop - Show all filter buttons */
@media (min-width: 769px) {
    .gallery-filters {
        display: flex;
    }
    
    .filter-btn {
        display: flex;
    }
}

/* Mobile - Show only active filter button */
@media (max-width: 768px) {
    .gallery-filters {
        margin-bottom: 20px;
        gap: 0;
    }
    
    .filter-btn {
        display: none; /* Hide all buttons by default */
        width: auto;
        min-width: 150px;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
        position: relative;
    }
    
    .filter-btn.active {
        display: flex; /* Show only active button */
        background: linear-gradient(135deg, #c4b998, #a89775);
        color: white;
        border-color: #c4b998;
        box-shadow: none;
    }
    
    /* Add dropdown indicator to active button */
    .filter-btn.active::after {
        content: "▼";
        margin-left: 8px;
        font-size: 0.8rem;
        opacity: 0.7;
    }
    
    /* Mobile Gallery Grid - Optimized spacing */
    .gallery-grid {
        margin: 0 -8px;
    }
    
    .gallery-item {
        padding: 8px;
        width: 50%;
        flex: 0 0 50%;
    }
    
    .gallery-card {
        height: 180px;
        border-radius: 10px;
    }
    
    /* Optimize overlay content for mobile */
    .gallery-content i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .gallery-content h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .gallery-content p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .gallery-filters {
        margin-bottom: 15px;
    }
    
    .filter-btn.active {
        min-width: 140px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Ultra-compact mobile layout */
    .gallery-grid {
        margin: 0 -6px;
    }
    
    .gallery-item {
        padding: 6px;
    }
    
    .gallery-card {
        height: 160px;
    }
    
    .gallery-content i {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .gallery-content h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .gallery-content p {
        font-size: 0.7rem;
    }
}

/* Virtual Tour Modal */
.virtual-tour-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000 !important;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.virtual-tour-modal.show {
    display: flex !important;
    opacity: 1 !important;
}

.virtual-tour-modal .modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff73 !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 10001 !important;
}

.virtual-tour-modal .modal-container {
    position: relative !important;
    margin: auto !important;
    background: white !important;
    border-radius: 20px !important;
    max-width: 800px !important;
    width: 90% !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(196, 185, 152, 0.2) !important;
    z-index: 10002 !important;
}

.modal-header {
    display: flex ;
        flex-shrink: 0;
        align-items: flex-start;
        justify-content: space-between;
        align-content: flex-start;
        flex-direction: column;
}

  .modal-header {
   
        background: linear-gradient(135deg, var(--secondary-color), #b89775);
        color: white;
        padding: 15px 30px 15px 30px;
        position: relative;
        text-align: left;
       
}
#emailResultsModal .modal-header {
    display: flex ;
   
        text-align: left;
        flex-direction: row;
        align-content: center;
        align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-subtitle {
    margin: 0px 0 0 0;
 
    font-size: 1rem;
}
#emailResultsModal  .alert-info {
    font-size: 0.8rem;
    padding: 10px;
    --bs-alert-color: #1a1f36;
    --bs-alert-bg: #fcfcfc;
    --bs-alert-border-color: #efdfcd;
    --bs-alert-link-color: var(--bs-info-text-emphasis);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.modal-close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}
#calculator .unit-features{
    text-align: left;
    width: 80%;
    list-style: none;
    padding: 0px;
    margin: 15px auto 0 auto;
}
/* Modal Shake Animation for Locked Modal */
@keyframes modalShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.modal-content {
    padding: 0;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

/* Virtual Tour Multi-Step Form */
.virtual-tour-form {
    background: var(--light-color);
    border-radius: 0;
    padding: 20px 15px;
    box-shadow: none;
    border: none;
}

/* Virtual Tour Success Message */
.virtual-tour-success {
    display: none;
    text-align: center;
    padding: 0px 0px;
    background: var(--light-color);
}

.virtual-tour-success .success-icon {
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form transition states */
.virtual-tour-form .form-progress,
.virtual-tour-form .form-step,
.virtual-tour-form #virtualTourForm {
    transition: opacity 0.5s ease;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    width: 20%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.progress-percentage {
    text-align: right;
    margin-bottom: 00px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-percentage span {
    font-weight: 600;
    color: var(--secondary-color);
}



/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Choice Buttons */
.choice-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.choice-btn {
    background: var(--light-color);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.choice-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.choice-btn.selected {
    background: var(--gradient-accent);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(196, 185, 152, 0.3);
}

.choice-btn i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.choice-btn.selected i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.choice-btn span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.choice-btn small {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.3;
}

.choice-btn.selected small {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 185, 152, 0.25);
    outline: none;
}

.contact-form .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    border: 2px solid #e9ecef;
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form .form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-left: 10px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    min-height: 60px; /* Ensure consistent height even when buttons are hidden */
}

.form-navigation:has(#nextBtn:hidden):has(#submitBtn:hidden) {
    justify-content: center;
}

.form-navigation.center-previous {
    justify-content: center;
}

.form-navigation .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-navigation .btn i {
    transition: transform 0.3s ease;
}

.form-navigation .btn:hover i {
    transform: translateX(5px);
}

.form-navigation .btn-outline-primary:hover i {
    transform: translateX(-5px);
}

/* Success Message */
.success-message {
    text-align: center;
    animation: successSlideIn 0.6s ease;
}

.success-content {
    background: var(--light-color);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.success-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .virtual-tour-form {
        padding: 30px 20px;
    }
    
    .step-content h3 {
        font-size: 1.6rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .choice-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .choice-btn {
        min-width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .choice-btn i {
        font-size: 2rem;
    }
    
    .choice-btn span {
        font-size: 1.1rem;
    }
    

    
    .progress-percentage {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation .btn {
        width: 100%;
        order: 1;
    }
    
    .form-navigation .btn-outline-primary {
        order: 2;
    }
    
    .form-navigation.center-previous {
        flex-direction: column;
        align-items: center;
    }
    
    .form-navigation.center-previous .btn {
        width: auto;
        min-width: 200px;
    }
    
    .success-content {
        padding: 40px 20px;
    }
    
    .success-content h3 {
        font-size: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        max-height: 98vh;
        border-radius: 10px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        top: 12px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .virtual-tour-form {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .choice-btn {
        padding: 20px 15px;
    }
    
    .choice-btn i {
        font-size: 1.8rem;
    }
    
    .success-content {
        padding: 30px 15px;
    }
    
    .success-content i {
        font-size: 3rem;
    }
    
    .success-content h3 {
        font-size: 1.8rem;
    }
}

/* Step 4 - Side-by-side layout with icon and text */
.form-step[data-step="4"] .choice-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-step[data-step="4"] .choice-btn {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px 25px;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

.form-step[data-step="4"] .choice-btn i {
    font-size: 2rem;
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 40px;
    flex-shrink: 0;
}

.form-step[data-step="4"] .choice-btn .text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-step[data-step="4"] .choice-btn span {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.form-step[data-step="4"] .choice-btn small {
    margin: 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .form-step[data-step="4"] .choice-btn {
        min-width: 100%;
        padding: 18px 20px;
    }
    
    .form-step[data-step="4"] .choice-btn i {
        font-size: 1.8rem;
        margin-right: 15px;
        min-width: 35px;
    }
    
    .form-step[data-step="4"] .choice-btn span {
        font-size: 1rem;
    }
    
    .form-step[data-step="4"] .choice-btn small {
        font-size: 0.8rem;
    }
}

/* Step 3 specific styling - Vertical layout with side-by-side icon and text */
.form-step[data-step="3"] .choice-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-step[data-step="3"] .choice-btn {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px 25px;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

.form-step[data-step="3"] .choice-btn i {
    font-size: 2rem;
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 40px;
    flex-shrink: 0;
}

.form-step[data-step="3"] .choice-btn .text-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-step[data-step="3"] .choice-btn span {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.form-step[data-step="3"] .choice-btn small {
    margin: 0;
    font-size: 0.85rem;
}

/* Multiple selection indicator for step 3 */
.form-step[data-step="3"] .choice-btn::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.form-step[data-step="3"] .choice-btn.selected::after {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    content: "✓";
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.form-step[data-step="3"] .choice-btn:hover::after {
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .form-step[data-step="3"] .choice-btn {
        min-width: 100%;
        padding: 18px 20px;
    }
    
    .form-step[data-step="3"] .choice-btn i {
        font-size: 1.8rem;
        margin-right: 15px;
        min-width: 35px;
    }
    
    .form-step[data-step="3"] .choice-btn span {
        font-size: 1rem;
    }
    
    .form-step[data-step="3"] .choice-btn small {
        font-size: 0.8rem;
    }
    
    .form-step[data-step="3"] .choice-btn::after {
        top: 12px;
        right: 12px;
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
} 

/* Virtual Tour CTA Section */
#virtual-tour-cta {
    background: white;
    position: relative;
}

.virtual-tour-cta-container {
    background: #f8f9fa;
    border-radius: 15px;
    /* padding: 60px 40px; */
     
}

.virtual-tour-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.virtual-tour-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.tour-features {
    margin-top: 40px;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tour-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.tour-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 30px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.virtual-tour-cta-box {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid #e9ecef;
 
 
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.virtual-tour-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.virtual-tour-cta-box > p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-benefits {
    margin-bottom: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit-item i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    min-width: 15px;
}

.benefit-item span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.virtual-tour-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.virtual-tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6c757d;
}

.indicator i {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .virtual-tour-cta-container {
        padding: 40px 30px;
    }
    
    .virtual-tour-content {
        margin-bottom: 40px;
    }
    
    .virtual-tour-content h2 {
        font-size: 2.5rem;
    }
    
    .tour-features {
        margin-top: 30px;
    }
    
    .tour-feature {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .virtual-tour-cta-box {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .virtual-tour-cta-container {
        padding: 30px 20px;
    }
    
    .virtual-tour-content h2 {
        font-size: 2rem;
    }
    
    .virtual-tour-content .lead {
        font-size: 1.1rem;
    }
    
    .tour-features {
        margin-top: 25px;
    }
    
    .tour-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
    
    .tour-feature i {
        font-size: 1.3rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .virtual-tour-cta-box {
        padding: 25px 20px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .virtual-tour-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .virtual-tour-cta-container {
        padding: 20px 15px;
    }
    
    .virtual-tour-content h2 {
        font-size: 1.8rem;
    }
    
    .virtual-tour-content .lead {
        font-size: 1rem;
    }
    
    .tour-feature {
        padding: 15px;
    }
    
    .virtual-tour-cta-box {
        padding: 20px 15px;
    }
    
    .virtual-tour-cta-box h3 {
        font-size: 1.3rem;
    }
    
    .virtual-tour-btn {
        padding: 12px 15px;
        font-size: 1rem;
    }
} 

/* Privacy Policy Modal */
.privacy-policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000 !important;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.privacy-policy-modal.show {
    display: flex !important;
    opacity: 1 !important;
}

.privacy-policy-modal .modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff36 !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 10001 !important;
}

.privacy-policy-modal .modal-container {
    position: relative !important;
    margin: auto !important;
    background: white !important;
    border-radius: 20px !important;
    max-width: 900px !important;
    width: 90% !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(196, 185, 152, 0.2) !important;
    z-index: 10002 !important;
}

/* Privacy Policy Content */
.privacy-policy-content {
    padding: 30px 40px 40px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    line-height: 1.6;
    color: var(--primary-color);
}

.privacy-policy-content .section {
    margin-bottom: 30px;
}

.privacy-policy-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

.privacy-policy-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-policy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.effective-date {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 30px;
}

.effective-date p {
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Privacy Policy Footer Link */
.privacy-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 3px;
}

.privacy-link:hover {
    color: var(--accent-color);
    background: rgba(196, 185, 152, 0.1);
    text-decoration: underline;
}

/* Responsive Design for Privacy Policy Modal */
@media (max-width: 768px) {
    .privacy-policy-modal .modal-container {
        width: 95% !important;
        max-height: 95vh !important;
        border-radius: 15px !important;
    }
    
    .privacy-policy-content {
        padding: 20px 25px 30px;
        max-height: calc(95vh - 100px);
    }
    
    .privacy-policy-content h3 {
        font-size: 1.2rem;
    }
    
    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 0.9rem;
    }
    
    .effective-date {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-modal .modal-container {
        width: 98% !important;
        max-height: 98vh !important;
        border-radius: 10px !important;
    }
    
    .privacy-policy-content {
        padding: 15px 20px 25px;
        max-height: calc(98vh - 80px);
    }
    
    .privacy-policy-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .privacy-policy-content p,
    .privacy-policy-content li {
        font-size: 0.85rem;
    }
    
    .effective-date {
        padding: 12px;
    }
    
    .privacy-link {
        display: block;
        margin-top: 5px;
    }
}

/* Location Tabs and Carousel Styling */
.location-tabs-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.location-nav-tabs {
    border-bottom: 2px solid #e9ecef;
    padding: 0 0px;
    background: #f8f9fa;
}

.location-nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
}

.location-nav-tabs .nav-link:hover {
    color: var(--secondary-color);
    background: rgba(196, 185, 152, 0.1);
    border-color: transparent;
}

.location-nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--secondary-color);
    font-weight: 600;
}

.location-tab-content {
    padding: 0;
    min-height: 400px;
}

/* Location Carousel Styling */
.location-carousel {
    border-radius: 0;
    position: relative;
    margin-bottom: 40px; /* Space for indicators */
}

.location-carousel .carousel-inner {
    border-radius: 0;
}

.location-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-carousel .carousel-caption {
    background: rgba(26, 31, 54, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 10px;
    bottom: 5px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.location-carousel .carousel-caption h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0px;
}

.location-carousel .carousel-caption p {
    font-size: 1rem;
    line-height: 120%;
    color: var(--accent-color);
    margin: 0;
}

/* Carousel Indicators - Custom Styling */
.location-carousel .carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 10px 20px;
    background: white;
    
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto;
}

.location-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #35280099;
    background-color: transparent;
    transition: all 0.3s ease;
    text-indent: -999px;
    overflow: hidden;
    margin: 0;
   
}

.location-carousel .carousel-indicators button.active {
    background-color: #c4b998;
    border-color: #c4b998;
    transform: scale(1.2);
}

.location-carousel .carousel-indicators button:hover {
    background-color: rgba(196, 185, 152, 0.7);
    border-color: rgba(196, 185, 152, 0.7);
    transform: scale(1.1);
}

/* Carousel Controls */
.location-carousel .carousel-control-prev,
.location-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 31, 54, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-carousel .carousel-control-prev {
    left: 20px;
}

.location-carousel .carousel-control-next {
    right: 20px;
}

.location-carousel .carousel-control-prev:hover,
.location-carousel .carousel-control-next:hover {
    background: rgba(196, 185, 152, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
}

.location-carousel .carousel-control-prev-icon,
.location-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Site Location Content */
.site-location-content {
   
}

.location-address h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.location-address .address {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 25px;
}

.location-highlights h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.highlight-item span {
    font-size: 1rem;
    color: #495057;
    line-height: 1.4;
}

.sales-office-info h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sales-office-info p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .location-tab-content {
        min-height: 350px;
    }
    
    .location-carousel .carousel-item img {
        height: 300px;
    }
    
    .location-carousel .carousel-caption {
        padding: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .location-carousel .carousel-caption h5 {
        font-size: 1.1rem;
    }
    
    .location-carousel .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .site-location-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .location-nav-tabs {
        padding: 0 15px;
    }
    
    .location-nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .location-carousel .carousel-item img {
        height: 250px;
    }
    
    .location-carousel .carousel-indicators {
        bottom: -35px;
        padding: 8px 15px;
        gap: 6px;
    }
    
    .location-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .location-carousel .carousel-control-prev,
    .location-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .location-carousel .carousel-control-prev {
        left: 15px;
    }
    
    .location-carousel .carousel-control-next {
        right: 15px;
    }
    
    .location-carousel .carousel-caption {
        padding: 12px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .location-carousel .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .location-carousel .carousel-caption p {
        font-size: 0.85rem;
    }
    
    .site-location-content {
        padding: 15px;
    }
    
    .location-address h4 {
        font-size: 1.2rem;
    }
    
    .highlight-item {
        padding: 10px 0;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-carousel {
        margin-bottom: 50px;
    }
    
    .location-carousel .carousel-indicators {
        bottom: -30px;
        padding: 6px 12px;
        gap: 5px;
    }
    
    .location-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .location-carousel .carousel-item img {
        height: 200px;
    }
    
    .location-carousel .carousel-caption {
        padding: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .location-carousel .carousel-caption h5 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .location-carousel .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* Legal Disclaimer in Footer - Full Width */
.footer-section .disclaimer-full-width {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    background: inherit;
}

.footer-section .disclaimer-main-text {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.footer-section .disclaimer-toggle-section {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section .disclaimer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
}

.footer-section .disclaimer-toggle {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-section .disclaimer-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.disclaimer-toggle .fas {
    transition: transform 0.3s ease;
}

.disclaimer-toggle[aria-expanded="true"] .fas {
    transform: rotate(180deg);
}

.footer-section .disclaimer-details {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%;
    margin: 0;
}

.footer-section .disclaimer-details p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    text-align: justify;
    line-height: 1.6;
}

/* Responsive styles for disclaimer */
@media (max-width: 768px) {
    .footer-section .disclaimer-text {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .footer-section .disclaimer-toggle {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .footer-section .disclaimer-details {
        margin: 0;
    }
    
    .footer-section .disclaimer-details p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .footer-section .disclaimer-text {
        font-size: 12px;
        padding: 0 5px;
    }
    
    .footer-section .disclaimer-toggle {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Responsive Design */