/* Reset & Base Styles */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* Hero Section */
#hero {
    position: relative;
    background: linear-gradient(rgba(12, 60, 96, 0.85), rgba(12, 60, 96, 0.9)),
                url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 100vh;
    color: white;
    overflow: hidden;
    padding: 30px 40px 0;
    display: flex;
    flex-direction: column;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* Logo fallback styles */
.logo-placeholder {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #0c3c60, #1a5a8a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: white;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.logo-sub {
    font-size: 0.9rem;
    color: #FFCC00;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    padding: 0;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    margin-top: 25px;
    flex-wrap: wrap;
}

.nav-links li { 
    margin-left: 30px; 
}

.nav-links a { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    transition: color 0.3s; 
    position: relative; 
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover { 
    color: #FFCC00; 
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFCC00;
    transition: width 0.3s;
}

.nav-links a:hover::after { 
    width: 100%; 
}

.btn-nav-contact {
    background-color: #FFCC00; 
    color: #0c3c60; 
    border: none; 
    padding: 12px 28px;
    border-radius: 30px; 
    font-size: 1rem; 
    cursor: pointer; 
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-nav-contact:hover {
    background-color: #ffdb4d; 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pre-heading */
.pre-heading {
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.tagline-divider {
    color: #FFCC00;
    font-size: 1.8rem;
    font-weight: 300;
}

/* Main Hero Heading */
.hero-heading {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

.heading-line-1, .heading-line-2, .heading-line-3 {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

.heading-line-1 {
    font-size: 5rem;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.heading-line-2 {
    font-size: 4.5rem;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.heading-line-3 {
    font-size: 6rem;
    background: linear-gradient(135deg, #FFCC00, #ffdb4d, #FFCC00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 4px;
    margin-top: 15px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 204, 0, 0.5),
                     0 0 30px rgba(255, 204, 0, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 204, 0, 0.8),
                     0 0 40px rgba(255, 204, 0, 0.6),
                     0 0 50px rgba(255, 204, 0, 0.4);
    }
}

/* Hero Subheading */
.hero-subheading {
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-subheading p {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    padding: 25px;
    border-left: 4px solid #FFCC00;
    border-right: 4px solid #FFCC00;
    font-family: 'Playfair Display', serif;
}

/* Project Features */
.project-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.feature i {
    color: #FFCC00;
    font-size: 1.6rem;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px auto;
    padding: 35px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    max-width: 900px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFCC00;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary, .cta-tertiary {
    padding: 22px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    min-width: 280px;
    justify-content: center;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, #FFCC00, #ffdb4d);
    color: #0c3c60;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.4);
}

.cta-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.6);
    background: linear-gradient(135deg, #ffdb4d, #FFCC00);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 3px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFCC00;
    transform: translateY(-5px);
}

.cta-tertiary {
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border: 3px solid rgba(255,255,255,0.2);
}

.cta-tertiary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #FFCC00;
    transform: translateY(-5px);
}

.cta-primary i, .cta-secondary i, .cta-tertiary i {
    font-size: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    cursor: pointer;
}

.mouse {
    width: 35px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 0 auto 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 12px;
    background: #FFCC00;
    border-radius: 3px;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 15px; }
    100% { opacity: 0; top: 35px; }
}

.scroll-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255, 204, 0, 0.1) 0%,
                rgba(12, 60, 96, 0.9) 70%);
    z-index: 1;
}

/* Section Common Styles */
.section-container { 
    padding: 100px 40px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #0c3c60;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.section-description {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alt-bg { 
    background-color: #f9f9f9; 
}

/* About Project Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.about-intro strong {
    color: #0c3c60;
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-description strong {
    color: #0c3c60;
    font-weight: 700;
}

.vision-statement {
    background: #f0f5ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #0c3c60;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vision-statement i {
    color: #0c3c60;
    font-size: 1.5rem;
    margin-top: 5px;
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.spec-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #0c3c60;
}

.spec-icon {
    font-size: 3rem;
    color: #0c3c60;
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-card p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

/* Major Projects Section */
.major-projects {
    margin-top: 60px;
}

.major-projects h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
}

/* Highlights Grid */
.highlights-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; 
    margin-top: 50px;
}

.highlight-card {
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.highlight-card:hover { 
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0c3c60, #1a5a8a);
    border-radius: 15px 15px 0 0;
}

.highlight-icon {
    font-size: 3.5rem; 
    color: #0c3c60; 
    margin-bottom: 25px; 
}

.highlight-card h3 { 
    margin-bottom: 20px; 
    color: #222; 
    font-size: 1.6rem;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.highlight-card p strong {
    color: #0c3c60;
}

/* Residences Section - Fixed Button Alignment */
.residences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.residence-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.residence-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border-color: #0c3c60;
}

.residence-header {
    background: linear-gradient(135deg, #0c3c60, #1a5a8a);
    color: white;
    padding: 35px 30px;
    text-align: center;
    flex-shrink: 0;
}

.residence-header h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.residence-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.residence-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.residence-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.residence-specs {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: auto;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
    font-weight: 600;
}

.spec-item i {
    color: #0c3c60;
}

.area-option {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c3c60;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.area-option:hover {
    border-color: #0c3c60;
    transform: scale(1.05);
}

.single-area {
    margin: 0 auto;
    max-width: 200px;
}

.residence-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: #0c3c60;
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: auto;
    flex-shrink: 0;
}

.residence-btn:hover {
    background: #1a5a8a;
}

/* Amenities Categories */
.amenities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.category {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #0c3c60;
}

.category h3 {
    color: #222;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category h3 i {
    color: #0c3c60;
}

.category ul {
    list-style: none;
}

.category li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.category li i {
    color: #0c3c60;
    margin-top: 5px;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.connect-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.connect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0c3c60;
}

.connect-item h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.connect-item i {
    color: #0c3c60;
    font-size: 1.5rem;
}

.connect-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.location-map {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c3c60, #1a5a8a);
    color: white;
    padding: 40px;
    text-align: center;
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-placeholder p {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #0c3c60, #1a5a8a);
    color: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer { 
    background: linear-gradient(135deg, #222, #111); 
    color: #ddd; 
    padding: 80px 40px 40px; 
    text-align: center; 
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0c3c60, #1a5a8a);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img { 
    margin-bottom: 15px; 
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo h3 { 
    color: white; 
    margin-bottom: 5px; 
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.footer-subtitle {
    color: #FFCC00;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-info {
    max-width: 800px;
}

.footer-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.footer-info strong {
    color: #FFCC00;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}

.footer-contact i {
    color: #FFCC00;
}

.btn-footer {
    background-color: #FFCC00; 
    color: #0c3c60; 
    border: none; 
    padding: 18px 45px;
    border-radius: 30px; 
    font-size: 1.2rem; 
    cursor: pointer; 
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-footer:hover {
    background-color: #ffdb4d; 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-copyright { 
    margin-top: 50px; 
    padding-top: 25px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.5); 
    font-size: 1rem; 
}

/* Popup Form Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: overlayFadeIn 0.4s ease-out;
}

@keyframes overlayFadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.popup-content {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    border: 2px solid #0c3c60;
}

.close-popup-btn {
    position: absolute;
    top: 15px; 
    right: 20px;
    border: none; 
    background: transparent;
    font-size: 32px;
    color: #888;
    cursor: pointer; 
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-popup-btn:hover { 
    color: #333; 
    transform: rotate(90deg) scale(1.1);
    background: #f5f5f5;
}

.popup-content h2 { 
    color: #222; 
    margin-bottom: 25px;
    text-align: center; 
    font-size: 1.8rem;
    font-weight: 800;
}

.popup-content h2 i { 
    color: #0c3c60; 
    margin-right: 12px;
    font-size: 2rem;
}

#enquiryForm input, #enquiryForm select, #enquiryForm textarea {
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px;
    border: 2px solid #eee; 
    border-radius: 10px;
    font-family: inherit; 
    font-size: 1rem;
    transition: all 0.3s ease;
}

#enquiryForm input:focus, #enquiryForm select:focus, #enquiryForm textarea:focus {
    border-color: #0c3c60;
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 60, 96, 0.2);
    transform: translateY(-2px);
}

#enquiryForm button.btn-submit { 
    width: 100%; 
    padding: 16px; 
    font-size: 1.1rem; 
    font-weight: 700;
    position: relative;
    height: 50px;
    margin-top: 10px;
    background-color: #0c3c60;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#enquiryForm button.btn-submit:hover { 
    background-color: #1a5a8a;
    transform: translateY(-3px);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-disclaimer { 
    margin-top: 20px; 
    text-align: center; 
    color: #666; 
    font-size: 0.9rem; 
    line-height: 1.6;
}

.form-disclaimer i { 
    color: #0c3c60; 
    margin-right: 6px;
    font-size: 1rem;
}

/* Form Status Messages */
#formStatus {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-size: 1rem;
    font-weight: 600;
}

.success { 
    background-color: #d4edda; 
    color: #155724; 
    border: 2px solid #c3e6cb; 
}

.error { 
    background-color: #f8d7da; 
    color: #721c24; 
    border: 2px solid #f5c6cb; 
}

/* Google Forms Integration Styles */
.google-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    justify-content: center;
    align-items: center;
}

.google-form-container {
    width: 90%;
    max-width: 800px;
    height: 85vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.google-form-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.close-google-form {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #0c3c60;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-google-form:hover {
    background: #ff3333;
    transform: rotate(90deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .heading-line-1 { font-size: 4.5rem; }
    .heading-line-2 { font-size: 4rem; }
    .heading-line-3 { font-size: 5.5rem; }
    
    .hero-subheading p { font-size: 1.8rem; }
    
    .about-content, .location-content {
        gap: 60px;
    }
    
    .section-header h2, .section-container h2 {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .about-content, .location-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        gap: 15px;
    }
    
    .heading-line-1 { font-size: 4rem; }
    .heading-line-2 { font-size: 3.5rem; }
    .heading-line-3 { font-size: 4.5rem; }
    
    .hero-subheading p {
        font-size: 1.6rem;
        padding: 20px;
    }
    
    .project-features {
        gap: 40px;
        padding: 20px 30px;
    }
    
    .feature {
        font-size: 1.2rem;
    }
    
    .project-specs {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 20px 20px 0;
    }
    
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container {
        margin-bottom: 20px;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        margin-top: 15px;
        gap: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .heading-line-1 { font-size: 3.2rem; }
    .heading-line-2 { font-size: 2.8rem; }
    .heading-line-3 { font-size: 3.5rem; }
    
    .hero-subheading p {
        font-size: 1.4rem;
        padding: 15px;
        border-left: 3px solid #FFCC00;
        border-right: 3px solid #FFCC00;
    }
    
    .project-features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
    }
    
    .feature {
        font-size: 1.1rem;
        white-space: normal;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-primary, .cta-secondary, .cta-tertiary {
        width: 100%;
        max-width: 350px;
        padding: 20px 30px;
    }
    
    .quick-stats {
        flex-wrap: wrap;
        gap: 30px;
        padding: 25px;
    }
    
    .stat {
        flex: 0 0 calc(50% - 30px);
    }
    
    .stat-divider:nth-child(even) {
        display: none;
    }
    
    .stat-divider:nth-child(odd) {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        flex-direction: column;
        gap: 10px;
        font-size: 1.2rem;
    }
    
    .section-subtitle i {
        display: none;
    }
    
    .section-container {
        padding: 70px 20px;
    }
    
    .section-container h2 {
        font-size: 2.5rem;
    }
    
    .residences-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
    }
    
    .project-specs {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .popup-content {
        padding: 25px 20px;
    }
    
    .google-form-container {
        width: 95%;
        height: 90vh;
    }
}

@media (max-width: 576px) {
    .heading-line-1 { font-size: 2.8rem; }
    .heading-line-2 { font-size: 2.4rem; }
    .heading-line-3 { font-size: 3rem; }
    
    .hero-subheading p {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
    }
    
    .footer-info p {
        font-size: 1rem;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-content h2 {
        font-size: 1.4rem;
    }
}