/* Home Page Specific Styles */
.featured-properties {
    padding: 6rem 0;
    background-color: var(--off-white);
}

.india-coverage-wrapper {
    display: flex;
    justify-content: center;
}

.india-coverage {
    width: 100%;
    max-width: 1100px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.coverage-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coverage-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    /* Removed infinite animation that was causing loading issues */
}

/* Removed @keyframes shine that was causing infinite animation loop */

.coverage-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.coverage-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* New design for Coast to Coast Coverage */
.coverage-new-design {
    padding: 2.5rem;
}

.coverage-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
    border-radius: var(--border-radius);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.coverage-map-container {
    margin: 2.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.india-map-new {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.india-map-new img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.india-map-new:hover img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.overlay-content {
    color: white;
}

.overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.coverage-key-highlights {
    margin: 2.5rem 0;
}

.highlights-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.highlights-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(37, 99, 235, 0.03);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
}

.highlight-item span {
    color: var(--dark-color);
    font-weight: 500;
}

.coverage-description {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.coverage-description p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}



.home-contact-form {
    padding: 6rem 0;
    background-color: var(--white);
}

.home-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.home-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-image {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(14, 165, 233, 0.85)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=600&q=80');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.contact-image-content {
    max-width: 450px;
}

.contact-image-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-image-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.contact-form-section {
    padding: 3rem;
}

.home-contact-container .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.home-contact-container .section-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
}