/* ============================================
   PROJECT DETAIL CSS - GREEN HOUSE REAL ESTATE
   ============================================ */

/* ===== PROJECT HERO SLIDER ===== */
.project-hero {
    margin-top: 80px;
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 80px 0 40px;
    color: white;
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-location {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.hero-location i {
    color: #d4af37;
    margin-right: 8px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(212,175,55,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badges .badge i {
    color: #d4af37;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #d4af37;
    color: #2c3e50;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

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

.dot.active {
    background: #d4af37;
    transform: scale(1.3);
}

/* ===== PROJECT OVERVIEW SECTION ===== */
.project-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Video Container */
.video-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.project-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Key Features Box */
.key-features {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.key-features h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.key-features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-label {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-value {
    display: block;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

/* Right Column */
.section-tag {
    font-size: 14px;
    letter-spacing: 6px;
    color: #d4af37;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.overview-right h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.experience-badge {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

.experience-badge i {
    font-size: 24px;
}

.project-description {
    margin-bottom: 30px;
}

.project-description .lead {
    font-size: 20px;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    border-left: 4px solid #d4af37;
    padding-left: 25px;
}

.project-description p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlights-list {
    margin: 30px 0;
}

.highlight-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.highlight-row i {
    font-size: 24px;
    color: #d4af37;
    flex-shrink: 0;
}

.highlight-row h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-row p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

.overview-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d4af37;
    color: #2c3e50;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

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

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* ===== GALLERY SECTION ===== */
.project-gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    cursor: pointer;
}

.gallery-item.main {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

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

.gallery-overlay i {
    color: white;
    font-size: 32px;
    background: rgba(212,175,55,0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ===== AMENITIES SECTION ===== */
.project-amenities-section {
    padding: 100px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.15);
    border-color: #d4af37;
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #d4af37;
}

.amenity-card h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* ===== LOCATION SECTION ===== */
.project-location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.location-info {
    padding: 40px;
}

.location-highlight {
    margin-bottom: 30px;
    text-align: center;
}

.location-highlight i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 15px;
}

.location-highlight h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-highlight p {
    color: #7f8c8d;
}

.distance-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212,175,55,0.3);
}

.distance-item .place {
    color: #2c3e50;
    font-weight: 500;
}

.distance-item .time {
    color: #d4af37;
    font-weight: 600;
}

.location-map {
    height: 100%;
    min-height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== FLOOR PLANS SECTION ===== */
.floor-plans-section {
    padding: 100px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
}

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

.plan-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plan-info {
    padding: 25px;
}

.plan-info h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.plan-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.plan-details i {
    color: #d4af37;
    margin-right: 5px;
}

.plan-info p {
    font-size: 20px;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-btn {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: #2c3e50;
    color: white;
}

/* ===== RELATED PROJECTS ===== */
.related-projects {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    display: block;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.15);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px 15px 5px;
    color: #2c3e50;
    font-size: 18px;
}

.related-card p {
    padding: 0 15px 15px;
    color: #d4af37;
    font-size: 14px;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.project-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(212,175,55,0.1);
}

.project-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.project-contact-form .form-group {
    margin-bottom: 20px;
}

.project-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.project-contact-form input,
.project-contact-form select,
.project-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.project-contact-form input:focus,
.project-contact-form select:focus,
.project-contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.btn-submit {
    background: #d4af37;
    color: #2c3e50;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 60px; }
    .overview-grid { gap: 40px; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .overview-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.main { grid-column: span 2; }
    .location-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 48px; }
    .hero-slider-controls { bottom: 20px; right: 20px; }
    .overview-right h2 { font-size: 36px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.main { grid-column: span 1; }
    .related-grid { grid-template-columns: 1fr; }
    .project-contact-form .form-row { grid-template-columns: 1fr; }
    .overview-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}