/* New Launch Page CSS */
/* Import Google Fonts - Same as other pages */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
.new-launch-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL WIDTH OVERRIDE - Same as other pages */
.new-launch-page {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Force all sections to take full width */
.new-launch-page section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Container styles - Consistent padding */
.new-launch-page .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Typography - Same fonts as other pages */
.new-launch-page h1,
.new-launch-page h2,
.new-launch-page h3,
.new-launch-page h4 {
    font-family: 'Lora', serif;
}

.new-launch-page p,
.new-launch-page span,
.new-launch-page div {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.launch-hero {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), url('https://demo.bharatvillaprojects.com/wp-content/uploads/2025/06/modern-country-houses-construction-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #125849, #1a7a62);
    color: white;
    box-shadow: 0 8px 25px rgba(18, 88, 73, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #0f4a3c, #167055);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(18, 88, 73, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #125849;
    transform: translateY(-2px);
}

/* Hero Background - Legacy support */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
    z-index: 2;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Headers - Consistent styling */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .italic {
    font-style: italic;
    font-weight: 400;
    color: #125849;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #999;
    font-weight: 400;
}

/* Why Invest Section */
.why-invest-new {
    background: white !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.invest-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f8f9fa;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #125849;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #125849, #1a7a62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1a7a62, #125849);
}

.benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.benefit-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Project Listings Section */
.project-listings {
    background: #f8f9fa !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #125849;
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #125849, #1a7a62);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.project-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-location i {
    color: #125849;
}

.project-config {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-config .divider {
    color: #999;
}

.project-price {
    margin-bottom: 25px;
}

.project-price .price {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #125849;
    display: block;
}

.project-price .emi {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.project-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #125849;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.project-btn:hover {
    background: #0f4a3c;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Project Spotlight Section */
.project-spotlight {
    background: white !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 80px;
}

.spotlight-label {
    display: inline-block;
    background: linear-gradient(135deg, #125849, #1a7a62);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.spotlight-text h2 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.spotlight-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
    margin-bottom: 40px;
}

.spotlight-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.feature-item i {
    width: 35px;
    height: 35px;
    background: #125849;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.spotlight-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 450px;
    background: url('https://demo.bharatvillaprojects.com/wp-content/uploads/2025/05/luxury-outdoor-hotel-scaled.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.spotlight-image:hover {
    transform: scale(1.02);
}

.spotlight-image img {
    display: none; /* Hide img tags since we're using background images */
}

/* Amenities Section */
.amenities-section {
    background: #f8f9fa !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.amenity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.amenity-card:nth-child(1) { animation-delay: 0.1s; }
.amenity-card:nth-child(2) { animation-delay: 0.2s; }
.amenity-card:nth-child(3) { animation-delay: 0.3s; }
.amenity-card:nth-child(4) { animation-delay: 0.4s; }
.amenity-card:nth-child(5) { animation-delay: 0.5s; }
.amenity-card:nth-child(6) { animation-delay: 0.6s; }

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #125849;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #125849, #1a7a62);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1a7a62, #125849);
}

.amenity-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.amenity-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Location Section */
.location-section {
    background: white !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.location-content {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 80px;
}

.location-text h2 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.location-text h2 .italic {
    font-style: italic;
    font-weight: 400;
    color: #125849;
}

.location-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
    margin-bottom: 50px;
}

.location-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.location-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #125849;
}

.location-point:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.location-point i {
    width: 50px;
    height: 50px;
    background: #125849;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.point-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.location-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 450px;
    background: url('https://demo.bharatvillaprojects.com/wp-content/uploads/2025/05/road-city-scaled.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.location-image:hover {
    transform: scale(1.02);
}

.location-image img {
    display: none; /* Hide img tags since we're using background images */
}

/* Booking Process Section */
.booking-process {
    background: #f8f9fa !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f8f9fa;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.step-card:nth-child(odd) { animation-delay: 0.1s; }
.step-card:nth-child(odd):nth-child(3) { animation-delay: 0.2s; }
.step-card:nth-child(odd):nth-child(5) { animation-delay: 0.3s; }
.step-card:nth-child(odd):nth-child(7) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #125849;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #125849, #1a7a62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.step-arrow {
    color: #125849;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQs Section */
.faqs-section {
    background: white !important;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.faq-question {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #125849;
}

.faq-question h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #125849;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: #125849;
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    padding: 0 0 30px 0;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://demo.bharatvillaprojects.com/wp-content/uploads/2025/05/Consultancy-Portfolio-Resume-Website-in-Dark-Blue-and-Brown-Simple-Dark-Style-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    color: white;
}

.cta-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.cta-text h2 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.enquiry-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-row input,
.form-row select {
    padding: 8px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.form-row input:focus,
.form-row select:focus {
    border-color: #125849;
    box-shadow: 0 0 0 3px rgba(18, 88, 73, 0.1);
    transform: translateY(-1px);
}

.form-row input::placeholder {
    color: #adb5bd;
}

.form-row select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
}

.form-row input.error,
.form-row select.error {
    border-color: #e53e3e;
    background-color: rgba(229, 62, 62, 0.05);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Disclaimers Section */
.disclaimers-section {
    background: #f8f9fa !important;
    padding: 80px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.disclaimers-content h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.disclaimer-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.disclaimer-item h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #125849;
    margin-bottom: 15px;
}

.disclaimer-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.approval-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.approval-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.approval-item i {
    width: 35px;
    height: 35px;
    background: #125849;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.scroll-arrow i {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow i {
    transform: translateY(2px);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Hero Section Adjustments for Scroll Indicator */
.launch-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Large Desktop */
@media (max-width: 1400px) {
    .new-launch-page .container {
        padding: 0 30px !important;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4.2rem;
    }
    
    .section-title {
        font-size: 3.5rem !important;
    }
    
    .spotlight-text h2,
    .location-text h2,
    .cta-text h2 {
        font-size: 3rem;
    }
    
    .spotlight-content,
    .location-content {
        grid-template-columns: 60% 40%;
        gap: 60px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .new-launch-page .container {
        padding: 0 25px !important;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem !important;
    }
    
    .spotlight-text h2,
    .location-text h2,
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .spotlight-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .invest-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .approval-logos {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .new-launch-page .container {
        padding: 0 20px !important;
    }
    
    .launch-hero {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .why-invest-new,
    .project-listings,
    .project-spotlight,
    .amenities-section,
    .location-section,
    .booking-process,
    .faqs-section,
    .cta-section,
    .disclaimers-section {
        padding: 80px 0 !important;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
    
    .spotlight-text h2,
    .location-text h2,
    .cta-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .spotlight-text p,
    .location-text p {
        font-size: 1rem;
    }
    
    .spotlight-image,
    .location-image {
        height: 300px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card,
    .amenity-card {
        padding: 40px 25px;
    }
    
    .benefit-icon,
    .amenity-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .location-point {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .faq-question {
        padding: 25px 0;
        gap: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .cta-form-wrapper {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }
    
    .disclaimers-content h3 {
        font-size: 1.8rem;
    }
    
    .approval-logos {
        justify-content: space-around;
        gap: 20px;
    }
    
        .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
    
    .scroll-arrow i {
        font-size: 1.1rem;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .new-launch-page .container {
        padding: 0 15px !important;
    }
    
    .launch-hero {
        min-height: 350px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .spotlight-text h2,
    .location-text h2,
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .spotlight-image,
    .location-image {
        height: 250px;
    }
    
    .benefit-card,
    .amenity-card {
        padding: 35px 20px;
    }
    
    .benefit-icon,
    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
    
    .feature-item i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .location-point {
        padding: 25px 20px;
    }
    
    .location-point i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 35px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row input,
    .form-row select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .disclaimers-content h3 {
        font-size: 1.6rem;
    }
    
    .approval-logos {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
        .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
    
    .bv-section-title{
        font-size: 1.5rem !important;
    }
    
    .bv-video-title{
        font-size: 1.5rem !important;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.7rem !important;
    }
    
    .spotlight-text h2,
    .location-text h2,
    .cta-text h2 {
        font-size: 1.6rem;
    }
    
    .benefit-card,
    .amenity-card {
        padding: 30px 15px;
    }
    
    .step-card {
        padding: 30px 15px;
    }
    
    .cta-form-wrapper {
        padding: 25px 15px;
    }
    
    .disclaimers-content h3 {
        font-size: 1.4rem;
    }
}

/* ============ ACCESSIBILITY & PERFORMANCE ============ */

/* Focus Management */
.cta-btn:focus,
.project-btn:focus,
.submit-btn:focus,
.faq-question:focus,
.form-row input:focus,
.form-row select:focus {
    outline: 2px solid #125849;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .project-card,
    .amenity-card,
    .step-card,
    .location-point,
    .spotlight-image,
    .location-image,
    .cta-btn,
    .project-btn,
    .submit-btn,
    .faq-question,
    .benefit-icon,
    .amenity-icon {
        transition: none;
        animation: none;
    }
    
    .location-point:hover,
    .benefit-card:hover,
    .project-card:hover,
    .amenity-card:hover,
    .step-card:hover,
    .spotlight-image:hover,
    .location-image:hover {
        transform: none;
    }
    
    .cta-btn:hover,
    .project-btn:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .benefit-card,
    .project-card,
    .amenity-card,
    .step-card,
    .location-point,
    .disclaimer-item,
    .cta-form-wrapper,
    .faq-item {
        border: 2px solid #000;
    }
    
    .cta-btn.primary,
    .project-btn,
    .submit-btn {
        background: #125849;
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .new-launch-page {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
    }
    
    .launch-hero,
    .why-invest-new,
    .project-listings,
    .project-spotlight,
    .amenities-section,
    .location-section,
    .booking-process,
    .faqs-section,
    .cta-section,
    .disclaimers-section {
        background: white !important;
        color: #000 !important;
    }
    
    .hero-bg-image,
    .spotlight-image,
    .location-image,
    .cta-bg-image {
        display: none;
    }
    
    .cta-btn,
    .project-btn,
    .submit-btn {
        background: #125849 !important;
        color: white !important;
        border: 2px solid #125849;
    }
    
    .cta-form-wrapper {
        background: white !important;
        border: 2px solid #125849;
    }
}

/* Performance Optimization */
.benefit-card,
.project-card,
.amenity-card,
.step-card,
.spotlight-image,
.location-image,
.benefit-icon,
.amenity-icon {
    will-change: transform, box-shadow;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.new-launch-page img {
    transition: opacity 0.3s ease;
}

.new-launch-page img[loading="lazy"] {
    opacity: 0;
}

.new-launch-page img[loading="lazy"].loaded {
    opacity: 1;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}-btn {
    background: linear-gradient(135deg, #125849, #1a7a62);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(18, 88, 73, 0.3);
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0f4a3c, #167055);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(18, 88, 73, 0.4);
}
