/* Project Page Specific Styles */
.project-hero {
    background: linear-gradient(135deg, #0b1426 0%, #0f1f3a 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,122,26,0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(0,180,255,0.1), transparent 40%);
    pointer-events: none;
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

.project-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .project-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .project-hero-visual {
        order: -1;
    }
}

.project-hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 26, 0.15);
    border: 1px solid rgba(255, 122, 26, 0.3);
    color: #ff7a1a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .project-hero-content h1 {
        font-size: 2rem;
    }
}

.project-hero-content .hero-lead {
    font-size: 1.1rem;
    color: #cbd5e1 !important;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-hero-content .hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .project-hero-content .hero-checks {
        grid-template-columns: 1fr;
    }
}

.project-hero-content .hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5ecf8 !important;
    font-weight: 500;
}

.project-hero-content .hero-checks li i {
    color: #1ec28f;
    font-size: 1.1rem;
}

.project-hero-content .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-hero-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-hero-content .btn-primary {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 92, 0, 0.3);
}

.project-hero-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 92, 0, 0.4);
}

.project-hero-content .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-hero-content .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-hero-visual {
    position: relative;
}

.project-hero-figure {
    margin: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.project-hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.project-hero-figure .location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    color: #0b1426;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-hero-figure .location-badge i {
    color: #ff7a1a;
}

/* Section Styles */
.project-section {
    padding: 80px 0;
}

.project-section.bg-dark {
    background: #0b1426;
}

.project-section.bg-alt {
    background: linear-gradient(180deg, #0f1b30 0%, #0b1426 100%);
}

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

.project-section .section-subtitle {
    display: inline-block;
    color: #ff7a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 15px;
}

.project-section .section-lead {
    font-size: 1.1rem;
    color: #94a3b8 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 20px;
}

.content-text p {
    color: #cbd5e1 !important;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-text p strong {
    color: #ff7a1a !important;
}

.content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Process Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 122, 26, 0.3);
    transform: translateY(-5px);
}

.process-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.process-card h3 {
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    color: #94a3b8 !important;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.gallery-card .card-content {
    padding: 20px;
}

.gallery-card h4 {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-card p {
    color: #94a3b8 !important;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 122, 26, 0.3);
}

.faq-item h3 {
    color: #ff7a1a !important;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3 i {
    margin-top: 3px;
}

.faq-item p {
    color: #cbd5e1 !important;
    line-height: 1.7;
    padding-left: 30px;
}

/* CTA Section */
.project-cta {
    background: linear-gradient(135deg, #ff7a1a, #ff5c00);
    padding: 70px 0;
    text-align: center;
}

.project-cta h2 {
    color: #fff !important;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.project-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.project-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-cta .btn-white {
    background: #fff;
    color: #ff5c00;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.project-cta .btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.project-cta .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
