/* Floor Plan Section Styles */
.floorplan-section {
    padding: 15px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-light) 100%);
    position: relative;
}

.floorplan-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.plan-category-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    padding-bottom: 15px;
    position: relative;
    border-bottom: 2px solid rgba(26, 71, 42, 0.1);
}

.plan-category-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.plan-category-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

.plan-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    animation: fadeInUp 1s both;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.plan-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(26, 71, 42, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.plan-card:hover .plan-overlay {
    opacity: 1;
}

.plan-content h5 {
    color: white;
    font-size: 1.3rem;
}

.plan-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.plan-footer {
    padding: 10px;
    text-align: center;
    background: white;
}

.plan-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

.plan-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.plan-download-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--box-shadow);
    animation: fadeInUp 1s 1s both;
    position: relative;
    overflow: hidden;
}

.plan-download-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
}

.download-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.plan-download-card h4 {
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.plan-download-card p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.download-plan-btn {
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-plan-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary-dark);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floorplan-section {
        padding: 70px 0;
    }
    
    .plan-category-title {
        font-size: 1.5rem;
    }
    
    .plan-image {
        height: 200px;
    }
    
    .plan-download-card {
        padding: 30px 20px;
    }
    
    .download-plan-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .plan-download-card {
        padding: 25px 15px;
    }
    
    .plan-download-card h4 {
        font-size: 1.5rem;
    }
    
    .download-icon {
        font-size: 2.5rem;
    }
}
:root {
    --primary-color: #1a472a;
    --primary-dark: #0f2d1a;
    --secondary-color: #d4af37;
    --secondary-light: #e8c866;
    --light-color: #f8f9fa;
    --dark-color: #222222;
    --text-color: #444444;
    --gray-light: #f5f7fa;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    line-height: 1.3;
}


.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.btn-primary:hover:before {
    left: 0;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
    color: white;
}

/* Main Layout */
.main-container {
    display: flex;
    min-height: 100vh;
}

.content-section {
    width: 70%;
    padding-right: 0;
}

.contact-sticky-section {
    width: 30%;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-light) 100%);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
.main-header {
    padding: 0px 0;
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.logo {
    max-height: 65px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--primary-dark);
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 70%;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    transform: scale(1.05);
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    padding: 30px;
    background: linear-gradient(90deg, rgba(26, 71, 42, 0.85) 0%, rgba(26, 71, 42, 0.7) 100%);
    color: white;
    max-width: 400px;
    border-radius: var(--border-radius);
    margin-left: 10px;
    backdrop-filter: blur(5px);
    animation: slideInUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-premium {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: var(--primary-dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.slider-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.slider-dot:after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.slider-dot:hover:after {
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-nav {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    font-size: 1.2rem;
}

.slider-nav:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* EOI Section Styling */
.eoi-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.eoi-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.eoi-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    box-shadow: var(--box-shadow);
    animation: fadeInUp 1s 0.3s both;
}

.eoi-heading {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    animation: fadeInUp 1s 0.5s both;
}

.eoi-subheading {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.2rem;
    animation: fadeInUp 1s 0.7s both;
}

.price-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: inline-block;
    margin: 30px 0;
    animation: fadeInUp 1s 0.9s both;
}

.price-tag {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin: 10px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.price-tag:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.price-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 25px;
}

/* Contact Form Sticky Section */
.sticky-contact-container {
    padding: 40px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sticky-contact-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s both;
}

.sticky-contact-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sticky-form-group {
    margin-bottom: 10px;
    animation: fadeInUp 0.8s both;
}

.sticky-form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.sticky-form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.sticky-form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.sticky-form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.sticky-form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1px;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.sticky-form-control {
    width: 100%;
    padding: 7px 7px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 0.95rem;
    background-color: white;
}

.sticky-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
    transform: translateY(-2px);
}

.consent-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    background-color: rgba(26, 71, 42, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    animation: fadeInUp 0.8s 0.5s both;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.sticky-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 7px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s 0.6s both;
}

.sticky-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(26, 71, 42, 0.3);
    background: linear-gradient(135deg, #e8c352 0%, var(--primary-color) 100%);
}

.contact-helper {
    text-align: center;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #666;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s 0.7s both;
}

/* Features Section */
.features-section {
    padding: 5px 0;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    animation: fadeInDown 1s both;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 60px;
    font-size: 1.1rem;
    animation: fadeInUp 1s 0.3s both;
}

.feature-item {
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s both;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.feature-item:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
    position: relative;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: rotateY(360deg) scale(1.1);
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-item:hover h4 {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    height: 320px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: fadeInUp 1s both;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 71, 42, 0.9));
    color: white;
    padding: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Amenities Section */
.amenities-section {
    padding: 10px 0;
    background-color: white;
}

.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 5px solid transparent;
    animation: fadeInLeft 1s both;
}

.amenity-item:nth-child(even) {
    animation: fadeInRight 1s both;
}

.amenity-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-hover);
    border-left-color: var(--secondary-color);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

/* Location Section */
.location-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: fadeInLeft 1s both;
}

.location-highlight h3 {
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.location-highlight h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.location-list {
    list-style: none;
    padding-left: 0;
}

.location-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.05rem;
    animation: fadeInRight 1s both;
}

.location-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.location-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.location-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.location-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.location-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.location-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #393118;
    position: absolute;
    left: 0;
    font-size: 1.4rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    animation: fadeInRight 1s both;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), #e8c352);
}

.footer h5 {
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-links a:hover:before {
    opacity: 1;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-5px) rotate(10deg);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .content-section {
        width: 75%;
    }

    .contact-sticky-section {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
    }

    .content-section,
    .contact-sticky-section {
        width: 100%;
    }

    .contact-sticky-section {
        position: relative;
        height: auto;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sticky-contact-container {
        padding: 50px;
    }

    .hero-slider {
        height: 75vh;
        min-height: 550px;
    }

    .slide-content {
        margin-left: 40px;
        margin-right: 40px;
        padding: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-height: 34px;
        transition: var(--transition);
    }
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .eoi-heading {
        font-size: 2.8rem;
    }

    .features-section,
    .gallery-section,
    .amenities-section,
    .location-section,
    .eoi-section {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 30px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .eoi-heading {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .slider-controls {
        bottom: 25px;
    }
}

/* project css */

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    line-height: 1.3;
}

/* Project Overview Section */
.project-overview-section {
    padding: 17px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.project-overview-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.location-badge {
    display: inline-block;
    background: rgba(26, 71, 42, 0.1);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 1px solid rgba(26, 71, 42, 0.2);
}

.project-title {
    font-size: 2.5rem;
    margin-bottom: 21px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.project-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.project-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.project-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.project-highlights {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary-color);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.highlight-content p {
    color: #666;
    margin-bottom: 0;
}

.download-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.2);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(26, 71, 42, 0.3);
    background: linear-gradient(135deg, #e8c352 0%, var(--primary-color) 100%);
    color: white;
    text-decoration: none;
}

.project-image {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('image/1.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.project-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 71, 42, 0.2), rgba(212, 175, 55, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.project-image:hover:after {
    opacity: 1;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s both;
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-overview-section {
        padding: 60px 0;
    }

    .project-title {
        font-size: 2.8rem;
    }

    .project-image {
        min-height: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .project-overview-section {
        padding: 50px 0;
    }

    .project-title {
        font-size: 2.3rem;
    }

    .project-content {
        font-size: 1rem;
    }

    .project-highlights {
        padding: 30px 20px;
    }

    .highlight-item {
        flex-direction: column;
    }

    .highlight-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 2rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
    }

    body {
        padding: 10px;
    }
}

.bannerIntroSection {
    padding: 20px 15px;
    text-align: center;
    animation: fadeInUp 0.8s both;
}

.bannerIntroText {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s 0.2s both;
}

.bannerMainTitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s 0.3s both;
}

.bannerMainTitle:first-of-type {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 0;
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    }

    100% {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
}

.bannerSubtitleText {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s 0.4s both;
}

/* Updated blink animation for better effect */
@keyframes blinkText {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    }
}

/* Contact Form Styling Updates */
.sticky-contact-container {
    padding: 0px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sticky-contact-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    animation: fadeInDown 0.8s both;
}

.sticky-contact-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sticky-form-group {
    margin-bottom: 15px;
    animation: slideInRight 0.6s both;
}

.sticky-form-group:nth-child(1) {
    animation-delay: 0.5s;
}

.sticky-form-group:nth-child(2) {
    animation-delay: 0.6s;
}

.sticky-form-group:nth-child(3) {
    animation-delay: 0.7s;
}



.sticky-form-control {
    width: 100%;
    padding: 4px 9px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
    background-color: white;
}

.sticky-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
    transform: translateY(-2px);
}

.consent-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    background-color: rgba(26, 71, 42, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 10px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s 0.8s both;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-text input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.consent-text label {
    margin-bottom: 0;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.consent-text a:hover {
    text-decoration: none;
}

.sticky-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e8c352 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 5px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s 0.9s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sticky-submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8c352 0%, var(--primary-color) 100%);
    transition: all 0.6s ease;
    z-index: -1;
}

.sticky-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(26, 71, 42, 0.3);
}

.sticky-submit-btn:hover:before {
    left: 0;
}

.contact-helper {
    text-align: center;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #666;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s 1s both;
}

/* New Animation for form elements */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bannerIntroSection {
        padding: 30px 20px;
    }

    .bannerMainTitle {
        font-size: 2rem;
    }

    .bannerMainTitle:first-of-type {
        font-size: 1.6rem;
        padding: 8px 20px;
    }

    .sticky-contact-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .bannerIntroSection {
        padding: 25px 15px;
    }

    .bannerMainTitle {
        font-size: 1.8rem;
    }

    .bannerMainTitle:first-of-type {
        font-size: 1.4rem;
    }

    .bannerSubtitleText {
        font-size: 1.1rem;
    }

    .bannerIntroText {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bannerIntroSection {
        padding: 20px 10px;
    }

    .bannerMainTitle {
        font-size: 1.6rem;
    }

    .bannerMainTitle:first-of-type {
        font-size: 1.2rem;
        padding: 6px 15px;
    }

    .sticky-form-control {
        padding: 10px 12px;
    }
}
