        .location-highlights {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            margin-top: 5px;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background: #fff;
            padding: 45px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .highlight-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(255, 122, 0, 0.2);
        }

        .highlight-card:hover::before {
            transform: scaleX(1);
        }

        .highlight-card .icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fff4eb, #ffe8d1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .highlight-card:hover .icon-wrapper {
            background: linear-gradient(135deg, #c78c4a, #ff9a44);
            transform: scale(1.1) rotate(5deg);
        }

        .highlight-card i {
            font-size: 36px;
            color: #c78c4a;
            transition: color 0.4s ease;
        }

        .highlight-card:hover i {
            color: #fff;
        }

        .highlight-card h4 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #1a1a1a;
            font-weight: 600;
        }

        .highlight-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Property Services Section */
        .property-services {
            background: #fff;
            padding: 80px 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .service-box {
            background: linear-gradient(135deg, #93b9df, #ccd4e0);
            padding: 28px 24px;
            border-radius: 16px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            color: #333;
            box-shadow: 0 6px 25px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            transition: left 0.5s ease;
            z-index: 0;
        }

        .service-box span {
            position: relative;
            z-index: 1;
        }

        .service-box:hover {
            transform: translateY(-8px);
            border-color: #c78c4a;
            box-shadow: 0 15px 45px rgba(255, 122, 0, 0.3);
        }

        .service-box:hover::before {
            left: 0;
        }

        .service-box:hover {
            color: #fff;
        }

        /* Legal Section */
        .legal-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .legal-card {
            padding: 50px 40px;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 12px 45px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }

        .legal-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            border-radius: 0 0 24px 24px;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .legal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 122, 0, 0.2);
        }

        .legal-card:hover::after {
            transform: scaleX(1);
        }

        .legal-card.accent {
            background: linear-gradient(135deg, #d3dadf, #b2ddff);
            border: 2px solid #263d4f;
        }

        .legal-card h3 {
            font-size: 26px;    
            margin-bottom: 18px;
            color: #1a1a1a;
            font-weight: 700;
        }

        .legal-card p {
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }

        /* CTA Section */
        .location-cta-section {
            padding: 100px 0;
            background: #fff;
        }

        .location-cta-box {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
            text-align: center;
            padding: 80px 40px;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .location-cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
            animation: pulse 8s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .location-cta-box h3 {
            font-size: 38px;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .location-cta-box p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .location-cta-box a {
            display: inline-block;
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            color: #fff;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
        }

        .location-cta-box a:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(255, 122, 0, 0.6);
            background: linear-gradient(90deg, #ff9a44, #c78c4a);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 32px;
            }

            .highlight-grid,
            .service-grid,
            .legal-grid {
                grid-template-columns: 1fr;
            }

            .location-cta-box h3 {
                font-size: 28px;
            }
        }

        /* Micro Markets */
.micro-markets {
    position: relative;
    padding: 80px 0;
    background: url(../img/harekrishna/locations/thane/bg.jpg);
    background-repeat: round;
    overflow: hidden;
}

.micro-markets::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.274); /* adjust opacity here */
    z-index: 1;
}

/* Ensure content stays above overlay */
.micro-markets > * {
    position: relative;
    z-index: 2;
}


     .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .overview-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .overview-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 122, 0, 0.2);
        }

        .overview-card i {
            font-size: 40px;
            color: #c78c4a;
            margin-bottom: 20px;
        }

        .overview-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .overview-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }

    
        .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        @media(min-width: 1700px) {
            .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 25px;
        }
        }

        .market-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #c78c4a;
            transition: all 0.3s ease;
        }

        .market-card:hover {
            background: linear-gradient(135deg, #c78c4a, #ff9a44);
            color: white;
            transform: translateX(10px);
        }

        .market-card h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .market-card p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Connectivity Section */
        .connectivity {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .connectivity-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: linear-gradient(90deg, #c78c4a, #ff9a44);
            color: white;
            border-color: #c78c4a;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .connectivity-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .connectivity-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.06);
        }

        .connectivity-item i {
            font-size: 32px;
            color: #c78c4a;
        }

        .connectivity-item h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .connectivity-item p {
            font-size: 14px;
            color: #666;
        }

        /* Social Infrastructure */
        .social-infrastructure {
            padding: 80px 0;
            background: white;
        }

        .infra-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .infra-category {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
        }

        .infra-category h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .infra-category h3 i {
            color: #c78c4a;
        }

        .infra-category ul {
            list-style: none;
        }

        .infra-category ul li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
            color: #555;
        }

        .infra-category ul li:last-child {
            border-bottom: none;
        }

        /* Investment Insights */
        .investment-insights {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .insight-box {
            background: rgba(255,255,255,0.1);
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .insight-box h3 {
            font-size: 36px;
            color: #ff9a44;
            margin-bottom: 10px;
        }

        .insight-box p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Price Trends */
        .price-trends {
            padding: 80px 0;
        }

        .price-card {
            padding: 0px;
            border-radius: 20px;
            text-align: center;
            margin-top: 40px;
            border: none;
        }   

        .price-card h3 {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .price-range {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .price-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            min-width: 500px;
        }

        .price-item h4 {
            font-size: 32px;
            color: #c78c4a;
            margin-bottom: 10px;
        }

        .price-item p {
            color: #666;
            font-size: 14px;
        }

        /* Available Properties */
        .available-properties {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .property-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: white;
            border: 2px solid #ddd;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            border-color: #c78c4a;
            color: #c78c4a;
        }

        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .property-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 122, 0, 0.2);
        }

        .property-image {
            height: 220px;
            background: linear-gradient(135deg, #93b9df, #ccd4e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #555;
        }

        .property-details {
            padding: 25px;
        }

        .property-details h4 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .property-specs {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }

        .property-specs span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-price {
            font-size: 24px;
            color: #c78c4a;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .property-cta {
            display: flex;
            gap: 10px;
        }

        .btn-secondary {
            flex: 1;
            padding: 10px;
            border: 2px solid #c78c4a;
            background: white;
            color: #c78c4a;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #c78c4a;
            color: white;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 80px;
            color: #c78c4a;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c78c4a, #ff9a44);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .author-info h5 {
            font-size: 16px;
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 13px;
            color: #666;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question i {
            color: #c78c4a;
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 25px 25px 25px;
            color: #666;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Contact Form */
        .quick-contact {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 1000;
        }

        .contact-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c78c4a, #ff9a44);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(199, 140, 74, 0.5);
            transition: all 0.3s ease;
        }

        .contact-toggle:hover {
            transform: scale(1.1);
        }

        .contact-form-popup {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 390px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: none;
        }

        .contact-form-popup h3{
            font-size: 25px;
        }

        .contact-form-popup.active {
            display: block;
        }

        .contact-form-popup h3 {
            padding: 20px;
            background: linear-gradient(135deg, #c69853, #d8aa65);
            color: white;
            border-radius: 15px 15px 0 0;
            margin-bottom: 0% !important;
        }

        .contact-form-popup form {
            padding: 20px;
        }

        h2{
            color: #404040;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d2a45f;
            border-radius: 8px;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #c78c4a, #cc9e59);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(199, 140, 74, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 36px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .connectivity-tabs {
                flex-direction: column;
            }

            .quick-contact {
                right: 15px;
                bottom: 15px;
            }

            .contact-form-popup {
                width: 300px;
            }
        }

        .btn-primary {
    border-radius: 20px;
    border: 1px solid #263d4f;
    background-color: #7f9fb982;
    color: #263d4f;
}


.btn-primary:hover {
    border-radius: 20px;
    border: 1px solid #263d4f;
    background-color: #7f9fb982;
    color: #263d4f;
}