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

.hero-pricing{
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.nav-logo span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Logo Image Styles */
.logo-image {
    height: 58px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.floating-whatsapp .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.floating-whatsapp .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation for floating button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp buttons */
@media (max-width: 768px) {
    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-whatsapp {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
   
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
    background: linear-gradient(135deg, 
        rgba(10, 10, 25, 0.9) 0%, 
        rgba(20, 20, 40, 0.8) 30%, 
        rgba(15, 25, 45, 0.7) 70%, 
        rgba(10, 10, 25, 0.9) 100%),
        url('assets/bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.4) 0%, 
        rgba(26, 26, 46, 0.3) 30%, 
        rgba(22, 33, 62, 0.2) 70%, 
        rgba(15, 15, 35, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    color: white;
    z-index: 1;
    max-width: 1200px;
    margin:  auto;
    padding:  1rem;
    width: 100%;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1.5rem 0;
}

.hero-right {
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title {
    margin-bottom: 2rem;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 2px;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 400;
   color:#e8dcc0;

    background-clip: text;
    text-shadow: none;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: #e8dcc0;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f0e6d2;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #c9a96e;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.25);
}

.feature-item i {
    font-size: 1.5rem;
    color: #c9a96e;
    margin-bottom: 0.6rem;
    display: block;
    text-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f0f0f0;
}

.hero-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.price-highlight, .investment-plan {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.price-highlight::before, .investment-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 10px 10px 0 0;
}

.price-label, .plan-label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.price-value, .plan-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.price-highlight:hover, .investment-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.btn-hero {
    background: linear-gradient(135deg, #c9a96e, #d4af37, #c9a96e);
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.btn-hero::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-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.5);
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.3), 
        rgba(244, 208, 63, 0.2), 
        rgba(212, 175, 55, 0.3),
        rgba(244, 208, 63, 0.2));
    border-radius: 26px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.hero-form:hover::after {
    left: 100%;
}

.hero-form-content {
    position: relative;
    z-index: 1;
}

.hero-form h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-form p {
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-form .form-group {
    margin-bottom: 1.2rem;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.hero-form input::placeholder {
    color: rgba(26, 26, 26, 0.6);
    font-weight: 400;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-form select option {
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.5rem;
}

.btn-form {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    color: #1a1a1a;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-form::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-form:hover::before {
    left: 100%;
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.amenity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    position: relative;
    z-index: 1;
}

.amenity-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.amenity-card h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Floor Plans Section */
.floor-plans {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border-color: #d4af37;
    transform: scale(1.05);
}

.plan-card.luxury {
    border-color: #8b4513;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d4af37;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-size {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features .feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.plan-features .feature:last-child {
    border-bottom: none;
}

/* Master Plan Image */
.master-plan-image {
    margin: 2rem 0;
    text-align: center;
}

.master-plan-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.master-plan-img:hover {
    transform: scale(1.02);
}

/* Floor Plan Images */
.plan-image {
    margin-bottom: 1.5rem;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 1rem;
}

.floor-plan-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: white;
    padding: 0.5rem;
}

.floor-plan-img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for floor plan images */
@media (max-width: 768px) {
    .master-plan-img {
        max-width: 90%;
    }
    
    .floor-plan-img {
        height: 150px;
    }
}

/* Download Brochure Button */
.download-brochure {
    margin: 2rem 0;
    text-align: center;
}

.btn-download {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, #d4af37);
}

.btn-download i {
    font-size: 1.1rem;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 25px;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.8);
    transition: transform 0.4s ease;
    position: relative;
    border: 3px solid #d4af37;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(212, 175, 55, 0.9);
    color: white;
    transform: scale(1.1);
}

.popup-background {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.popup-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.popup-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(0, 0, 0, 0.6));
}

.popup-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

.brochure-preview {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.luxury-badge {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.luxury-badge i {
    font-size: 0.9rem;
}

.brochure-icon {
    font-size: 5rem;
    color: #d4af37;
    margin: 1.5rem 0 1rem 0;
    display: block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

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

.brochure-preview h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brochure-preview p {
    margin: 0 0 1.5rem 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.pdf-preview-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pdf-preview-card:hover {
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.pdf-preview-card:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.pdf-icon-wrapper {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pdf-preview-icon {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

.pdf-info {
    flex: 1;
}

.pdf-info h5 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pdf-info p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pdf-size {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.click-hint {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.pdf-preview-card:hover .click-hint {
    opacity: 1;
    transform: translateX(0);
}

.click-hint i {
    font-size: 0.8rem;
    animation: point 1.5s infinite;
}

@keyframes point {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.popup-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-download-pdf {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;
}

.btn-download-pdf::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.6s ease;
}

.btn-download-pdf:hover::before {
    left: 100%;
}

.btn-download-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b8941f, #d4af37);
}

.btn-download-pdf:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-download-pdf i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
        max-width: 500px;
    }
    
    .popup-body {
        padding: 1rem 1.5rem;
    }
    
    .popup-background {
        height: 150px;
    }
    
    .pdf-preview-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .pdf-icon-wrapper {
        min-width: 50px;
        height: 50px;
        padding: 0.8rem;
    }
    
    .pdf-preview-icon {
        font-size: 1.5rem;
    }
    
    .click-hint {
        position: static;
        opacity: 1;
        transform: none;
        margin-top: 0.5rem;
        align-self: center;
    }
    
    .btn-download-pdf {
        min-width: 250px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .brochure-preview h4 {
        font-size: 1.5rem;
    }
    
    .brochure-preview p {
        font-size: 1rem;
    }
}


/* Investment Plan Section */
.investment-plan {

    color: white;
}

.plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.plan-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}
.plan-info p {
   color: #1a1a1a;
}

.plan-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666666;
}

.plan-breakdown {
    display: flex;
    gap: 2rem;
}

.plan-phase {
    text-align: center;
    flex: 1;
}

.phase-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.phase-desc {
    font-size: 1rem;
    color: #666666;
}

.investment-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #d4af37, #b8941f);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8941f;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    /* .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        min-height: auto;
    } */
    .hero-pricing{
        display: none;
    }

    .hero-content{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-left {
        order: 2;
        padding: 1rem 0;
        height: auto;
    }
    
    .hero-right {
        order: 1;
        height: auto;
        padding: 1rem 0;
    }
    
    .title-main {
        font-size: 2.8rem;
        letter-spacing: 1.5px;
    }
    
    .title-sub {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-pricing {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .price-highlight, .investment-plan {
        padding: 0.6rem 0.8rem;
    }
    
    .price-value, .plan-value {
        font-size: 1.1rem;
    }
    
    .price-label, .plan-label {
        font-size: 0.7rem;
    }
    
    .hero-form {
        max-width: 100%;
        padding: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .amenity-card {
        padding: 1.2rem 0.8rem;
    }
    
    .amenity-icon {
        width: 45px;
        height: 45px;
    }
    
    .amenity-icon i {
        font-size: 1.3rem;
    }
    
    .amenity-card h3 {
        font-size: 0.8rem;
    }
    
    .hero {
        background-attachment: scroll;
        padding-top: 70px;
    }
    
    .hero-content {
        min-height: calc(100vh - 70px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-breakdown {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        min-height: auto;
    }
    
    .title-main {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .title-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-pricing {
        gap: 0.8rem;
    }
    
    .price-highlight, .investment-plan {
        padding: 0.6rem 0.5rem;
    }
    
    .price-value,
    .plan-value {
        font-size: 1rem;
    }
    
    .price-label, .plan-label {
        font-size: 0.65rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .hero-form h3 {
        font-size: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .amenity-card {
        padding: 1rem 0.5rem;
    }
    
    .amenity-icon {
        width: 40px;
        height: 40px;
    }
    
    .amenity-icon i {
        font-size: 1.2rem;
    }
    
    .amenity-card h3 {
        font-size: 0.7rem;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
    }
    to {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.4);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(45deg, 
            rgba(212, 175, 55, 0.3), 
            rgba(244, 208, 63, 0.2), 
            rgba(212, 175, 55, 0.3),
            rgba(244, 208, 63, 0.2));
    }
    50% {
        background: linear-gradient(45deg, 
            rgba(244, 208, 63, 0.2), 
            rgba(212, 175, 55, 0.3), 
            rgba(244, 208, 63, 0.2),
            rgba(212, 175, 55, 0.3));
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.gallery-item,
.plan-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Book Now Form Popup Styles */
.book-now-popup {
    max-width: 600px;
}

.form-popup-content {
    text-align: left;
}

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

.form-header h3 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

.form-header p {
    color: #666;
    margin-bottom: 0;
    font-size: 16px;
}

.hero-form-content {
    margin-bottom: 20px;
}

.hero-form-content .form-group {
    margin-bottom: 13px;
}

.hero-form-content input,
.hero-form-content select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.hero-form-content input:focus,
.hero-form-content select:focus {
    outline: none;
    border-color: #8B4513;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}



.hero-form-content .btn-form:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.hero-form-content .btn-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pdf-download-section {
    margin-top: 30px;
    /* padding-top: 30px; */
    border-top: 2px solid #e0e0e0;
    animation: slideInUp 0.5s ease-out;
}

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

@media (max-width: 768px) {
    .book-now-popup {
        max-width: 95%;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .hero-form-content input,
    .hero-form-content select {
        padding: 12px 15px;
        font-size: 14px;
    }
    .hero-form-content .btn-form {
    padding: 7px 30px;

}
.hero-form-content .btn-form {
    width: 100%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}
}

@media (min-width: 1024px) {
    .hero-form-content .form-group {
        margin-bottom: 10px;
    }
    .popup-body {
    padding: 2rem;
   
}
.hero-form-content input, .hero-form-content select {
    padding: 12px 20px !important;
    
}
}


@media (max-width: 767px){
    
.brochure-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px !important;
}
.pdf-preview-card {
    margin:0px!important;}
    .form-header{
        display:none;
    }
    .pdf-download-section {
    margin-top: 0px !important;
    }
    .brochure-preview p {
        font-size: 14px;
    }
    .btn-download-pdf {
        min-width: 250px;
        padding: 6px 30px;
        font-size: 15px;
    }
    .brochure-description {
    display: none !important;}
}


