:root {
    --primary-color: #2e7d32;
    --secondary-color: #ff9800;
    --dark-color: #263238;
    --light-color: #f5f5f5;
    --text-color: #424242;
    --text-light: #757575;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #6bbf4e;
    border-color: #6bbf4e;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #6bbf4e;
    border-color: #6bbf4e;
    color: white;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    color: var(--text-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    min-height: 500px;
}

.info-box {
    max-width: 350px;
    z-index: 10;
    animation: fadeInUp 0.8s ease;
}

.mobile-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    animation: fadeInUp 0.8s ease;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.project-image {
    border-radius: 15px;
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.about-image-wrapper:hover .project-image {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.pricing-card .card-body {
    padding: 20px;
}

/* Amenities */
.amenity-card {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 0;
    padding-top: 75%;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.amenity-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label-top {
    position: absolute;
    top: 15px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 4px;
}

.label-bottom {
    position: absolute;
    bottom: 15px;
    left: 0;
    background: white;
    padding: 5px 12px;
    border-top-right-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Plans Section */
.plan-card {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-overlay {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
}

.plan-overlay span {
    color: #fff;
    font-weight: 600;
}

.plan-btn {
    background: #4CAF50 !important;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    margin-top: 17px;
}

.plan-btn:hover {
    background: #6bbf4e !important;
    color: white;
}

/* Gallery Section */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-img-mobile {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-img:hover,
.gallery-img-mobile:hover {
    transform: scale(1.03);
}

.label-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Location Section */
.map-box {
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

/* Tab styles */
.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #f1f1f1;
    color: #333;
    margin-right: 5px;
}

.nav-tabs .nav-link.active {
    background-color: #4CAF50;
    color: white;
}

/* Tab content box */
.tab-content {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Location list */
.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-item i {
    color: #4CAF50;
    margin-right: 8px;
}

/* Button */
.interest-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: 3px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.interest-btn:hover {
    background-color: #6bbf4e;
    color: white;
}

/* Site Visit Section */
.site-visit-section {
    background-color: #f5f5f5;
}

.site-visit-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-visit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-visit-form {
    padding: 30px;
}

.site-visit-form h2 {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.btn-express {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-express:hover {
    background-color: #6bbf4e;
}

.consent-text {
    font-size: 0.8rem;
    color: #555;
}

/* Footer Section */
.footer-section {
    text-align: center;
    background-color: #fff;
    font-size: 14px;
    color: #333;
}

.footer-section h2 {
    font-weight: bold;
    font-size: 24px;
}

.footer-section .godrej {
    font-weight: bold;
    font-size: 26px;
}

.godrej span:nth-child(1) {
    color: #4CAF50;
}

.godrej span:nth-child(2) {
    color: #2196F3;
}

.godrej span:nth-child(3) {
    color: #00BCD4;
}

.godrej span:nth-child(4) {
    color: #F44336;
}

.godrej span:nth-child(5) {
    color: #9C27B0;
}

.godrej span:nth-child(6) {
    color: #E91E63;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.button-border {
    border: none !important;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.modal-header {
    border-bottom: none;
    background: white;
    padding: 15px 20px 0 20px;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    color: #6bbf4e;
}

.promise-box {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.promise-title {
    background: #6bbf4e;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.promise-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.promise-item i {
    font-size: 20px;
    color: #6bbf4e;
    margin-right: 10px;
}

.form-control {
    border-radius: 8px;
    font-size: 14px;
}

.form-check-label {
    font-size: 12px;
}

.submit-btn {
    background: #6bbf4e;
    color: white;
    padding: 6px 25px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.submit-btn:hover {
    background: #5aaa3f;
}

.info-box {
    border: 1px solid #6bbf4e;
    border-radius: 8px;
    margin-top: 15px;
    padding: 15px;
    text-align: center;
}

.info-header {
    background: #6bbf4e;
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.info-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.info-icons div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.info-icons i {
    color: #6bbf4e;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-img {
        height: 70vh;
    }
}

@media (max-width: 991.98px) {
    .hero-img {
        height: 60vh;
    }
    
    .info-box {
        max-width: 300px;
    }
    
    .sticky-enquiry {
        position: relative;
        height: auto;
    }
    
    .site-visit-form {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-img {
        height: 50vh;
        min-height: 400px;
    }
    
    .info-box {
        position: relative;
        top: auto;
        transform: none;
        margin: -50px auto 30px;
        width: 90%;
        max-width: 100%;
        animation: none;
    }
    
    .mobile-info-box {
        animation: none;
    }
    
    .navbar-brand {
        font-size: 16px;
    }
    
    .gallery-img-mobile {
        height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .site-visit-form {
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-img {
        height: 45vh;
        min-height: 350px;
    }
    
    .pricing-card .card-body {
        padding: 15px;
    }
    
    .gallery-img-mobile {
        height: 200px;
    }
    
    .map-box {
        height: 250px;
    }
    
    .site-visit-card img {
        height: 200px;
    }
}



/* Amenities Section */
.amenity-card {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover img {
    transform: scale(1.05);
}

.amenity-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-weight: 500;
    text-align: center;
}

.amenity-img-mobile {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Carousel Controls for Amenities */
#desktopAmenities .carousel-control-prev,
#desktopAmenities .carousel-control-next,
#mobileAmenities .carousel-control-prev,
#mobileAmenities .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .amenity-card,
    .amenity-img-mobile {
        height: 200px;
    }
    .info-header{
        display: none;
    }
    .info-box{
        display: none;
    }
}

@media (max-width: 575.98px) {
    .amenity-card,
    .amenity-img-mobile {
        height: 180px;
    }
    
    #mobileAmenities .carousel-control-prev,
    #mobileAmenities .carousel-control-next {
        width: 30px;
        height: 30px;
    }
}