/* ===================================
   M3M GIC Manesar - Premium Styles
   ================================== */

/* CSS Variables */
:root {
    --primary-color: #1a3a52;
    --secondary-color: #d4af37;
    --accent-color: #2c5f7f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.btn-call,
.btn-enquire {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: var(--success-color);
    color: var(--white);
}

.btn-call:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-enquire {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-enquire:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85), rgba(44, 95, 127, 0.75));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-usps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1.2s ease;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.usp-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Form Card */
.hero-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 1s ease;
}

.hero-form-card.enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.enquiry-form .form-row-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.enquiry-form label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.enquiry-form textarea+label,
.enquiry-form .form-row-group label {
    top: 18px;
    transform: none;
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.hero-form-card.enhanced .enquiry-form input,
.hero-form-card.enhanced .enquiry-form textarea {
    background: rgba(248, 249, 250, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.hero-form-card.enhanced .enquiry-form input:focus,
.hero-form-card.enhanced .enquiry-form textarea:focus {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit.enhanced {
    background: linear-gradient(135deg, var(--secondary-color), #e6c04e);
    padding: 18px;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 58, 82, 0.4);
}

.btn-submit.enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-submit.enhanced:hover i {
    transform: translateX(5px);
}

.form-trust {
    margin-top: 20px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.form-trust i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.form-trust p {
    margin: 0;
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-text .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.overview-list {
    list-style: none;
    margin-top: 20px;
}

.overview-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.overview-list li:last-child {
    border-bottom: none;
}

.overview-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.overview-image {
    position: sticky;
    top: 100px;
}

.overview-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.location-map iframe {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.landmark-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.landmark-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.landmark-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.landmark-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.location-advantages {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-advantages h3 {
    margin-bottom: 20px;
}

.location-advantages ul {
    list-style: none;
}

.location-advantages li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-advantages i {
    color: var(--success-color);
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--secondary-color);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon i {
    color: var(--white);
}

.amenity-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.amenity-card p {
    font-size: 0.95rem;
}

/* Price Section */
.price-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border: 3px solid var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.price-header h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.price-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.price-body {
    padding: 40px 30px;
}

.price-amount {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: var(--success-color);
}

.btn-price {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.payment-info {
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.payment-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-info p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}


/* Floor Plans Section */
.floorplan-section {
    padding: 100px 0;
    background: var(--white);
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.floorplan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.floorplan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.floorplan-card img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    background: #f8f9fa;
}

.floorplan-info {
    padding: 25px;
    text-align: center;
}

.floorplan-info h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.floorplan-info p {
    margin-bottom: 20px;
}

.btn-floorplan {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-floorplan:hover {
    background: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 300px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.9), transparent);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-overlay h3 {
    color: var(--white);
}

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

.developer-content {
    display: grid;
    margin-bottom: 10px;
}

.developer-logo sup {
    font-size: 3rem;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

.developer-info .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.developer-achievements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 12px;
}

.achievement-item {
    text-align: center;
}

.achievement-item h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.achievement-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.developer-list {
    list-style: none;
    margin-top: 20px;
}

.developer-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.developer-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-contact-cta {
    padding: 15px 25px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-contact-cta.whatsapp {
    background: #25D366;
}

.btn-contact-cta.whatsapp:hover {
    background: var(--white);
    color: #25D366;
}

.contact-form-container {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.scroll-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .overview-content,
    .location-content,
    .developer-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .overview-image {
        position: static;
    }

    .developer-achievements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .header-cta {
        gap: 10px;
    }

    .btn-call,
    .btn-enquire {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .btn-call i {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-form-card {
        padding: 30px 25px;
    }

    .overview-stats,
    .developer-achievements {
        grid-template-columns: 1fr;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .price-grid,
    .floorplan-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .usp-item {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .highlights-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}/* Overview Section */
.overview-section {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.overview-text {
    flex: 1;
}

.overview-image {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
    }

    .overview-image {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 30px;
    }
}

/* New Contact Card Styles */
.new-contact-card {
    background: linear-gradient(135deg, #2c5f7f, #1a3a52);
    padding: 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 500px !important; /* Override inline style */
}

.form-header-icon {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 15px;
}

.new-contact-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.new-contact-card .form-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.form-group-new {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9900;
    font-size: 1.1rem;
    z-index: 1;
}

.form-group-new textarea + .input-icon {
    top: 20px;
    transform: none;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    background: rgba(255,255,255,0.2);
    border-color: #ff9900;
    outline: none;
}

.btn-submit-new {
    width: 100%;
    padding: 15px;
    background: #ff9900;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.btn-submit-new:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.form-footer-secure {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    background: rgba(40, 167, 69, 0.2);
    padding: 10px;
    border-radius: 8px;
}

.form-footer-secure i {
    color: #28a745;
}


/* Navigation Menu Styles */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* Flashing Message Banner */
.flash-message-banner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    animation: flashPulse 2s ease-in-out infinite;
}

.flash-message-banner .banner-text {
    text-align: center;
    line-height: 1.4;
}

.flash-message-banner .banner-text div {
    white-space: nowrap;
}

.flash-message-banner i {
    font-size: 1.3rem;
    animation: boltFlash 1.5s ease-in-out infinite;
}

@keyframes flashPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 0, 0.6);
    }
}

@keyframes boltFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .flash-message-banner {
        font-size: 0.85rem;
        padding: 12px 25px;
        top: 10px;
    }
}
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .flash-message-banner {
        font-size: 0.9rem;
        padding: 10px 20px;
        top: 10px;
    }
}

/* GIC Logo Watermark on Hero Section */
.hero-logo-watermark {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    opacity: 0.8;
    animation: logoFlash 3s ease-in-out infinite;
}

.hero-logo-watermark img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes logoFlash {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero-logo-watermark {
        bottom: 20px;
        right: 20px;
    }
    .hero-logo-watermark img {
        width: 80px;
    }
}

/* FAQ & Contact Combined Section */
.faq-contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.faq-column .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.contact-column {
    position: sticky;
    top: 100px;
}

.contact-column .new-contact-card {
    max-width: 100% !important;
}

@media (max-width: 992px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-column {
        position: static;
    }
}

/* Property Type Dropdown Styling */
.form-group-new select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group-new select option {
    background: #1a3a52;
    color: white;
    padding: 10px;
}

.form-group-new select:focus {
    background: rgba(255,255,255,0.2);
    border-color: #ff9900;
    outline: none;
}

.form-group-new select:invalid {
    color: rgba(255,255,255,0.6);
}

/* Thank You Message Styling */
.thank-you-message {
    padding: 60px 40px;
    text-align: center;
    animation: fadeInScale 0.5s ease-out;
}

.thank-you-content {
    color: white;
}

.thank-you-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: checkPulse 0.6s ease-out;
}

.thank-you-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: rgba(255,255,255,0.9);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   Thank You Message Overlay Styles
   ================================== */

.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.thank-you-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
    position: relative;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--success-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s ease;
}

.thank-you-icon i {
    font-size: 3.5rem;
    color: var(--white);
    animation: checkPulse 0.8s ease;
}

.thank-you-card h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease;
}

.thank-you-main {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.thank-you-sub {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    animation: fadeInUp 0.9s ease;
}

.btn-close-thankyou {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #e6c04e);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-close-thankyou:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c04e, var(--secondary-color));
}

.btn-close-thankyou i {
    transition: transform 0.3s ease;
}

.btn-close-thankyou:hover i {
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design for Thank You Message */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 30px;
        width: 95%;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
    }

    .thank-you-icon i {
        font-size: 2.5rem;
    }

    .thank-you-card h2 {
        font-size: 2rem;
    }

    .thank-you-main {
        font-size: 1.1rem;
    }

    .thank-you-sub {
        font-size: 0.95rem;
    }

    .btn-close-thankyou {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
