/* Project Detail Page Styles */

.project-detail-hero {
    min-height: 30vh;
    margin-top: 2vh;
}

/* Quick Info Bar */
.project-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-info-card {
    position: relative;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    z-index: 1;
}

/* Spinning conic-gradient perfect circle centered on the card */
.quick-info-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 30%, var(--color-gold) 45%, var(--color-primary) 55%, transparent 70%, transparent 100%);
    animation: rotate-border-centered 6s linear infinite;
    z-index: -2;
}

/* Inner white background cover leaving a 1.5px border */
.quick-info-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #ffffff;
    border-radius: 11px;
    z-index: -1;
}

@keyframes rotate-border-centered {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.quick-info-card .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(12, 16, 4, 0.5);
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.quick-info-card .value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Detail Section */
.project-detail-section {
    padding: 2rem 6% 5rem;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

/* Card Icons Styles */
.card-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.quick-info-card:hover .card-icon-container {
    background: linear-gradient(135deg, var(--color-gold), #b8962e);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.card-icon {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
    transition: all 0.3s ease;
}

.quick-info-card:hover .card-icon {
    stroke: #ffffff;
    transform: scale(1.1);
}

.project-detail-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.project-detail-section .section-header .pre-title {
    margin-bottom: 0.5rem;
}

.project-detail-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: #121c26;
    line-height: 1.2;
}

/* Sidebar + Panel Layout */
.project-detail-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Sidebar */
.project-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(12, 16, 4, 0.04);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.project-sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.project-sidebar-item:hover {
    background: rgba(212, 175, 55, 0.04);
}

.project-sidebar-item.active {
    background: rgba(212, 175, 55, 0.06);
    border-left-color: var(--color-gold);
}

.project-sidebar-item + .project-sidebar-item {
    border-top: 1px solid rgba(12, 16, 4, 0.03);
}

.project-sidebar-item .project-acc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-sidebar-item .project-acc-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
}

.project-sidebar-item.active .project-acc-icon {
    background: linear-gradient(135deg, var(--color-gold), #b8962e);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.project-sidebar-item.active .project-acc-icon svg {
    stroke: #ffffff;
}

.project-sidebar-item .project-acc-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(12, 16, 4, 0.7);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.project-sidebar-item.active .project-acc-title {
    color: #121c26;
    font-weight: 600;
}

/* Content Panel */
.project-content-panel {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(12, 16, 4, 0.04);
    padding: 2.5rem;
}

.project-content {
    display: none;
}

.project-content.active {
    display: block;
}

.project-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: #121c26;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-content p,
.project-content li {
    color: rgba(12, 16, 4, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.project-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.project-content li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.project-content li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.project-content .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.project-content .amenity-item {
    position: relative;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-content .amenity-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px; /* border thickness */
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-primary) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-content .amenity-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.08);
}

.project-content .amenity-item:hover::before {
    opacity: 1;
}

.project-content .amenity-item svg {
    flex-shrink: 0;
    stroke: var(--color-gold);
    filter: drop-shadow(0px 2px 4px rgba(212, 175, 55, 0.15));
    transition: transform 0.3s ease;
}

.project-content .amenity-item:hover svg {
    transform: scale(1.1);
}

.project-content .amenity-item span {
    color: #000000;
    display: block;
    line-height: 1.3;
    text-align: center;
}

#amenities h3 {
    text-align: center;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #000000;
}

#amenities p {
    text-align: center;
    color: #000000;
}

.project-content .spec-table {
    width: 100%;
    border-collapse: collapse;
}

.project-content .spec-table td {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(12, 16, 4, 0.04);
    font-size: 0.9rem;
}

.project-content .spec-table td:first-child {
    font-weight: 600;
    width: 35%;
}

.spec-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-heading svg {
    flex-shrink: 0;
    stroke: var(--color-gold) !important;
    filter: drop-shadow(0px 2px 3px rgba(80, 106, 28, 0.15));
}

.spec-heading span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.project-content .spec-table td:last-child {
    color: rgba(12, 16, 4, 0.7);
}

.project-content .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--color-primary), #3a4f14);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.project-content .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(80, 106, 28, 0.25);
}

.project-content .btn-download svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.project-content .location-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(12, 16, 4, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(12, 16, 4, 0.05);
    color: rgba(12, 16, 4, 0.3);
    font-size: 0.9rem;
}

/* CTA Section */
.project-cta-section {
    padding: 4rem 6%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.project-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.2;
    color: #121c26;
    margin-bottom: 1rem;
}

.project-cta-section p {
    font-size: 1rem;
    color: rgba(12, 16, 4, 0.6);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(18, 28, 38, 0.9) 0%, rgba(18, 28, 38, 0.4) 60%, rgba(18, 28, 38, 0) 100%);
    padding: 1.5rem 1.2rem 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #ffffff;
    line-height: 1.3;
}

/* Gallery Hover Animations */
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(80, 106, 28, 0.2);
    border-color: var(--color-gold);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Modal CSS */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 16, 4, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    animation: zoom 0.3s ease-out;
}

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

.lightbox-caption {
    margin-top: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1.5rem 1.2rem;
    margin-top: -3rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.3s ease;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 60px;
    height: 60px;
}

.lightbox-prev {
    left: 2.5rem;
}

.lightbox-next {
    right: 2.5rem;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}

/* Responsive - collapse to accordion on mobile */
@media (max-width: 1024px) {
    .project-sidebar {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .project-detail-layout {
        flex-direction: column;
    }

    .project-sidebar {
        width: 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        border-radius: 14px;
    }

    .project-sidebar-item {
        flex: 1 1 calc(50% - 0px);
        padding: 0.9rem 1rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.4rem;
    }

    .project-sidebar-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-gold);
    }

    .project-sidebar-item + .project-sidebar-item {
        border-top: none;
    }

    .project-sidebar-item .project-acc-icon {
        width: 32px;
        height: 32px;
    }

    .project-sidebar-item .project-acc-icon svg {
        width: 16px;
        height: 16px;
    }

    .project-sidebar-item .project-acc-title {
        font-size: 0.75rem;
    }

    .project-content-panel {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }

    .project-content ul {
        grid-template-columns: 1fr;
    }

    .project-content .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-content .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        padding: 0.8rem;
        margin-top: -22px;
    }
    .lightbox-prev {
        left: 1rem;
    }
    .lightbox-next {
        right: 1rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }

    .project-detail-section .section-header h2 {
        font-size: 2rem;
    }

    .project-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 5%;
    }

    .project-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .project-quick-info {
        gap: 0.8rem;
        padding: 1rem 5%;
    }

    .quick-info-card {
        padding: 1rem;
    }

    .quick-info-card .value {
        font-size: 0.95rem;
    }

    .project-sidebar-item {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(12, 16, 4, 0.03);
    }

    .project-sidebar-item.active {
        border-bottom-color: var(--color-gold);
    }

    .project-content-panel {
        padding: 1.2rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }

    .project-content .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .project-content .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .project-content .amenity-item {
        padding: 0.8rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .project-content .location-map {
        height: 200px;
    }

    .project-content .btn-download {
        width: 100%;
        justify-content: center;
    }

    .project-detail-section .section-header h2 {
        font-size: 1.6rem;
    }

    .project-detail-section {
        padding: 1.5rem 5% 3rem;
    }

    .project-cta-section {
        padding: 3rem 5%;
    }

    .project-cta-section h2 {
        font-size: 1.6rem;
    }
}

/* Premium 2-Column Hero & Image Carousel Redesign Styles */
.project-hero-section {
    padding: 3.5rem 6% 4rem;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.project-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.project-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-hero-pre-title {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.project-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.project-hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(12, 16, 4, 0.7);
    margin-bottom: 2rem;
    max-width: 650px;
}

.project-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.project-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(80, 106, 28, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.project-hero-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 35%, var(--color-gold) 50%, transparent 65%, transparent 100%);
    animation: rotate-border-centered 6s linear infinite;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-hero-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 13px;
    z-index: -1;
}

.project-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(80, 106, 28, 0.08);
    border-color: transparent;
}

.project-hero-card:hover::before {
    opacity: 1;
}

.project-hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-hero-card:hover .project-hero-card-icon {
    background: var(--color-gold);
    color: #ffffff;
    transform: scale(1.05);
}

.project-hero-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.project-hero-card-text .card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(12, 16, 4, 0.5);
    font-weight: 600;
}

.project-hero-card-text .card-value {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.project-hero-card-text .card-subvalue {
    font-size: 0.6rem;
    color: rgba(12, 16, 4, 0.55);
    font-weight: 500;
    margin-top: 0.05rem;
    line-height: 1.3;
    word-break: break-word;
}

.project-hero-actions {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.project-hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.project-hero-actions .btn-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(80, 106, 28, 0.15);
}

.project-hero-actions .btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(80, 106, 28, 0.2);
    transform: translateY(-2px);
}

.project-hero-actions .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
}

.project-hero-actions .btn-secondary:hover {
    background: var(--color-gold);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Right Column Carousel */
.project-hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.project-hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.carousel-slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(80, 106, 28, 0.15);
    color: var(--color-primary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev {
    left: 1rem;
}

.carousel-arrow.next {
    right: 1rem;
}

.carousel-dots-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(12, 16, 4, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
    width: 14px;
    border-radius: 4px;
}

/* Media Queries for Redesigned 2-Column Hero */
@media (max-width: 992px) {
    .project-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .project-hero-left {
        align-items: center;
    }
    
    .project-hero-title {
        font-size: 3rem;
    }
    
    .project-hero-desc {
        margin: 0 auto 2rem;
    }
    
    .project-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .project-hero-section {
        padding: 2rem 4% 3rem;
    }

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

    .project-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .project-hero-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .project-hero-card {
        padding: 0.8rem;
    }

    .project-hero-card-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .project-hero-title {
        font-size: 2.2rem;
    }

    .project-hero-grid {
        grid-template-columns: 1fr;
    }

    .project-hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .project-hero-actions .btn {
        width: 100%;
    }
}

/* ============================================================
   Restored Quick Enquiry Landing CTA Split Section & Form Styles
   ============================================================ */

/* Split Section: Text + Lead Form */
.landing-cta-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 4rem 6%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.cta-content-left h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(12, 16, 4, 0.7);
    margin-bottom: 2rem;
}

.amenities-list-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.amenity-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.amenity-highlight-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Lead Capture Form */
.lead-capture-card {
    background: #ffffff;
    border: 1px solid rgba(80, 106, 28, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    box-sizing: border-box;
}

.lead-capture-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(80, 106, 28, 0.2));
    z-index: -1;
    pointer-events: none;
}

.lead-capture-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lead-capture-card p {
    font-size: 0.85rem;
    color: rgba(12, 16, 4, 0.6);
    margin-bottom: 2rem;
}

.lead-capture-card .form-group {
    position: relative;
    margin-bottom: 1.5rem;
    display: block; /* Override flex layout from style.css */
}

.lead-capture-card .form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(12, 16, 4, 0.1);
    border-radius: 8px;
    background: #fcfcf9;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.lead-capture-card .form-control:focus {
    border-color: var(--color-gold);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.lead-capture-card .form-label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: rgba(12, 16, 4, 0.4);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.lead-capture-card .form-control:focus + .form-label,
.lead-capture-card .form-control:not(:placeholder-shown) + .form-label {
    top: 0;
    background: #ffffff;
    padding: 0 0.4rem;
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
}

.lead-capture-card .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold), #b8962e);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.lead-capture-card .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive CTA Split Section */
@media (max-width: 991px) {
    .landing-cta-split {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 4%;
    }

    .cta-content-left h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .cta-content-left p {
        text-align: center;
    }

    .cta-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .amenities-list-highlights {
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        width: 100%;
    }

    .lead-capture-card {
        padding: 1.5rem;
    }

    .lead-capture-card h3 {
        font-size: 1.3rem;
    }
}

/* ============================================================
   Restored FAQ Accordion Section Styles
   ============================================================ */

.faq-accordion-section {
    padding: 4rem 6%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-accordion-section h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(12, 16, 4, 0.08);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding-right: 2rem;
}

.faq-answer p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(12, 16, 4, 0.65);
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Horizontal bar */
.faq-toggle-icon::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

/* Vertical bar */
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg) scaleY(0);
}

@media (max-width: 991px) {
    .faq-accordion-section {
        padding: 2.5rem 4%;
    }

    .faq-accordion-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   RERA & Documentation Section Styles
   ============================================================ */

.rera-doc-section {
    margin-top: 0.5rem;
}

.rera-doc-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(80, 106, 28, 0.08);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
}

.rera-doc-info {
    flex: 1;
    min-width: 220px;
}

.rera-doc-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.rera-doc-info p {
    font-size: 0.9rem;
    color: rgba(12, 16, 4, 0.7);
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.rera-doc-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.rera-doc-qr img {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    border: 1px solid rgba(80, 106, 28, 0.12);
    background: #ffffff;
    padding: 4px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.rera-qr-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .rera-doc-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .rera-doc-qr img {
        width: 140px;
        height: 140px;
    }
}
