/* ==================== SIDDHII LANDMARK PROPERTY DETAILS CUSTOM STYLES ==================== */
/* Author: Siddhii Landmark | Version: 2.0 | Enhanced Design System */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-color: #ff4136;
    --primary-dark: #e6392f;
    --secondary-color: #1f2937;
    --accent-color: #fd7e14;
    --success-color: var(--theme-color);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-light: 0 4px 6px -1px rgba(255, 65, 54, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(255, 65, 54, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(255, 65, 54, 0.15);
}

/* ==================== LOGO STYLING ==================== */
.header-logo img {
    max-height: 60px;
    width: auto;
}

.about-logo img {
    max-height: 50px;
    width: auto;
}

/* ==================== RERA SECTION STYLING ==================== */
.rera-compliance-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.rera-compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.rera-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.rera-info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.rera-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.rera-info-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.rera-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.rera-info-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* ==================== CTA SECTION STYLING ==================== */
.cta-content-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cta-contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.contact-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-card-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card-subtitle {
    color: #666;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--theme-color);
}

.disclaimer-box {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==================== SPECIFICATION SECTION STYLING ==================== */
.specification-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.specification-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.specification-title {
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.specification-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.specification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.specification-card:hover::before {
    transform: scaleX(1);
}

.specification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(247, 63, 52, 0.3);
}

.spec-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.spec-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
    flex-shrink: 0;
}

/* ==================== PROJECT PAGE CUSTOM STYLES ==================== */
.project-stats {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* ==================== AMENITIES SECTION ==================== */
.amenity-category {
    margin-bottom: 40px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.amenity-icon {
    width: 35px;
    height: 35px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 16px;
}

/* ==================== RERA BOX ==================== */
.rera-box {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--theme-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-color);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* ==================== LOCATION LIST ==================== */
.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.location-icon {
    color: var(--theme-color);
    margin-right: 15px;
    font-size: 18px;
}

/* ==================== ABOUT SECTION REDESIGN ==================== */
.about-content-wrapper {
    padding: 0;
}

.price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-block;
    margin: 20px 0;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s infinite;
}

.price-content {
    text-align: center;
    color: var(--white);
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.about-features-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.about-features-grid .feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.about-features-grid .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-features-grid .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-features-grid .feature-icon img {
    width: 30px;
    height: 30px;
}

.about-features-grid .feature-content h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-features-grid .feature-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 30px 0;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 25px;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item i {
    margin-right: 10px;
    font-size: 16px;
}

/* ==================== ABOUT VISUAL SECTION ==================== */
.about-visual-wrapper {
    position: relative;
}

.about-visual-wrapper .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.location-card {
    top: 20px;
    right: 20px;
}

.rera-card {
    bottom: 20px;
    left: 20px;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
}

.floating-card .card-content h6 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card .card-content p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    animation: bounce 2s infinite;
}

.experience-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 5px 0 0 0;
    line-height: 1.2;
}

/* ==================== HIGHLIGHTS SECTION REDESIGN ==================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-icon-wrapper {
    margin-bottom: 25px;
}

.highlight-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    transition: all 0.3s ease;
}

.highlight-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.card-text {
    color: var(--text-light);
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 500;
}

.card-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== GALLERY SECTION REDESIGN ==================== */
.gallery-wrapper {
    margin-top: 50px;
}

.gallery-main-image {
    margin-bottom: 30px;
}

.main-gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.main-gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.main-gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.main-gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.gallery-content p {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.gallery-btn i {
    margin-right: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-hover {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-hover a {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.gallery-hover a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px 15px 15px;
}

.gallery-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.gallery-stats {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== WHY CHOOSE SECTION REDESIGN ==================== */
.bg-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-wrapper {
    margin-top: 50px;
}

.features-list {
    gap: 30px;
}

.why-choose-content .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-content .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.why-choose-content .feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-choose-content .feature-content {
    flex: 1;
}

.why-choose-content .feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.why-choose-content .feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.why-choose-content .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    font-size: 20px;
}

.why-choose-visual {
    position: relative;
}

.why-choose-visual .main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1.5s;
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 2px 0 0 0;
}

/* ==================== AMENITIES SECTION REDESIGN ==================== */
.amenities-wrapper {
    margin-top: 50px;
}

.amenities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.amenity-category {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amenity-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.amenity-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.amenity-category .category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.amenity-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
}

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-item:hover {
    padding-left: 10px;
}

.amenity-item i {
    color: var(--success-color);
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.amenity-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

/* ==================== PRICING SECTION STYLES ==================== */
.pricing-wrapper {
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.pricing-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.pricing-amount {
    padding: 40px 30px;
    text-align: center;
    background: var(--bg-light);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 10px;
}

.unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
}

.price-breakdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.price-item {
    text-align: center;
}

.price-item .label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-item .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    padding: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pricing-actions {
    padding: 30px;
    background: var(--bg-light);
    display: flex;
    gap: 15px;
}

.pricing-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.pricing-btn.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pricing-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-highlights {
    margin-top: 50px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.highlight-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== FLOOR PLANS SECTION STYLES ==================== */
.floor-plans-wrapper {
    margin-top: 50px;
}

.floor-plan-tabs .nav-pills {
    background: var(--bg-light);
    padding: 10px;
    border-radius: 50px;
    display: inline-flex;
}

.floor-plan-tabs .nav-link {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.floor-plan-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.floor-plan-tabs .nav-link:hover:not(.active) {
    background: rgba(246, 63, 52, 0.1);
    color: var(--primary-color);
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.floor-plan-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.floor-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.plan-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.plan-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.plan-price {
    font-size: 18px;
    font-weight: 700;
    opacity: 0.9;
}

.plan-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(246, 63, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floor-plan-card:hover .plan-overlay {
    opacity: 1;
}

.floor-plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-zoom {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-zoom:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.plan-details {
    padding: 30px;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
}

.spec-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(246, 63, 52, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floor-plan-stats {
    margin-top: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* ==================== CONSTRUCTION UPDATES SECTION ==================== */
.construction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.construction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.construction-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.construction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.construction-card:hover .construction-img img {
    transform: scale(1.05);
}

.construction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 63, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.construction-card:hover .construction-overlay {
    opacity: 1;
}

.construction-status {
    position: absolute;
    top: 15px;
    left: 15px;
}

.status-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.construction-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.construction-btn:hover {
    background: white;
    transform: scale(1.1);
}

.construction-content {
    padding: 25px;
}

.construction-date {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.construction-date i {
    margin-right: 5px;
}

.construction-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.construction-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.construction-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 70px;
}

/* ==================== CONSTRUCTION TIMELINE ==================== */
.construction-timeline {
    margin-top: 50px;
}

.timeline-container-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.timeline-item-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 200px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.timeline-item-horizontal.completed {
    opacity: 1;
}

.timeline-item-horizontal.active {
    opacity: 1;
    transform: scale(1.05);
}

.timeline-marker-horizontal {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item-horizontal.completed .timeline-marker-horizontal {
    background: var(--theme-color);
    color: white;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.timeline-item-horizontal.active .timeline-marker-horizontal {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(247, 63, 52, 0.3);
    animation: pulse 2s infinite;
}

.timeline-connector-horizontal {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    position: relative;
}

.timeline-connector-horizontal.completed {
    background: var(--theme-color);
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-stats {
        position: static;
        margin-top: 20px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-breakdown {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-tabs .nav-pills {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }
    
    .floor-plan-tabs .nav-link {
        margin: 5px 0;
    }
    
    .project-hero {
        min-height: 40vh;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features-grid .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features-grid .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ==================== SIMILAR PROJECTS SWIPER STYLES ==================== */
.similarProjectsSwiper {
    position: relative;
    padding: 20px 0;
}

.similarProjectsSwiper .swiper-slide {
    height: auto;
}

.similarProjectsSwiper .property-card {
    height: 100%;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similarProjectsSwiper .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 65, 54, 0.15);
}

.similarProjectsSwiper .property-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 4/3; /* Maintain 4:3 aspect ratio like Redison Royal reference image */
    width: 100%;
}

.similarProjectsSwiper .property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures all images fill the 4:3 container while maintaining aspect ratio */
    object-position: center; /* Centers the image */
    transition: transform 0.3s ease;
}

.similarProjectsSwiper .property-card:hover .property-card-img img {
    transform: scale(1.05);
}

.similarProjectsSwiper .property-card-content {
    padding: 20px;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.similarProjectsSwiper .property-card-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.similarProjectsSwiper .property-card-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.similarProjectsSwiper .property-card-content h4 a:hover {
    color: var(--primary-color);
}

.similarProjectsSwiper .property-card-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.similarProjectsSwiper .property-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.similarProjectsSwiper .property-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.similarProjectsSwiper .property-info .price {
    color: var(--primary-color);
    font-weight: 600;
}

.similarProjectsSwiper .th-btn {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.similarProjectsSwiper .th-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Swiper Navigation Buttons - Complete Rewrite */
.similar-projects-next,
.similar-projects-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #c0392b;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
    outline: none;
}

.similar-projects-next:hover,
.similar-projects-prev:hover {
    background: #a93226;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(192, 57, 43, 0.5);
}

.similar-projects-next:active,
.similar-projects-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.similar-projects-next {
    right: -25px;
}

.similar-projects-prev {
    left: -25px;
}

.similar-projects-next i,
.similar-projects-prev i {
    font-size: 18px;
    line-height: 1;
}

/* Disabled state */
.similar-projects-next.swiper-button-disabled,
.similar-projects-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Remove default Swiper arrow content */
.similar-projects-next::after,
.similar-projects-prev::after {
    content: '' !important;
    display: none;
}

/* Swiper Pagination */
.similar-projects-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 30px;
}

.similar-projects-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.similar-projects-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .similar-projects-next,
    .similar-projects-prev {
        display: none;
    }
}

@media (max-width: 575px) {
    .similarProjectsSwiper .property-card-content {
        padding: 15px;
    }
    
    .similarProjectsSwiper .property-card-content h4 {
        font-size: 16px;
    }
    
    .similarProjectsSwiper .property-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ==================== SINGLE IMAGE SHOWCASE - OLD PROJECTS ==================== */

.single-image-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.single-gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.single-gallery-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.single-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.single-gallery-card:hover img {
    transform: scale(1.05);
}

/* Legacy Project Notice */
.legacy-notice {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 30px;
}

.legacy-notice .alert {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    border-left: 4px solid #17a2b8;
    background-color: #d1ecf1;
    color: #0c5460;
    border-radius: 5px;
}

.legacy-notice .alert i {
    font-size: 20px;
    margin-right: 10px;
}

.legacy-notice .alert strong {
    font-weight: 600;
}

/* No Gallery Message */
.no-gallery-message {
    padding: 80px 20px;
}

.no-gallery-message i {
    opacity: 0.3;
    color: #6c757d;
}

.no-gallery-message h4 {
    color: #6c757d;
    margin-top: 20px;
    margin-bottom: 10px;
}

.no-gallery-message p {
    color: #adb5bd;
}

/* Responsive Design for Single Image */
@media (max-width: 768px) {
    .single-image-showcase {
        padding: 10px;
    }
    
    .legacy-notice .alert {
        flex-direction: column;
        text-align: center;
    }
    
    .legacy-notice .alert i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

