/* PROJECT DETAIL PAGE CSS */

.project-detail {
    padding: 60px 20px;
    background: linear-gradient(150deg, #ede9e3 0%, #f7f4ef 60%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

/* BLUEPRINT GRID OVERLAY */
.project-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(10, 25, 47, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(10, 25, 47, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.project-detail > * {
    position: relative;
    z-index: 1;
}

.project-detail-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* BACK BUTTON */
.project-back {
    margin-bottom: 30px;
}

.project-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f39c12;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.project-back a:hover {
    gap: 12px;
    color: #e67e22;
}

/* BACK BUTTON MOBILE */
@media (max-width: 576px) {
    .project-back {
        margin-bottom: 20px;
    }
}

/* PROJECT HEADER */
.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-category {
    display: inline-block;
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.project-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 1rem;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.7px;
}

.project-title .highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.project-location-date {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.project-location-date span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-location-date i {
    color: #f39c12;
    font-size: 0.99rem;
}

/* PROJECT HEADER MOBILE */
@media (max-width: 576px) {
    .project-header {
        margin-bottom: 30px;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-location-date {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* BEFORE / AFTER HERO */
.project-before-after-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 60px;
}

.before-card, .after-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.before-card:hover, .after-card:hover {
    transform: translateY(-5px);
}

.before-card img, .after-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.before-label, .after-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    z-index: 2;
}

.before-label {
    background: #c0392b;
    color: white;
}

.after-label {
    background: #27ae60;
    color: white;
}

.before-detail, .after-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 20px 20px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.85rem;
    text-align: center;
}

/* BEFORE / AFTER HERO MOBILE */
@media (max-width: 992px) {
    .project-before-after-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .project-before-after-hero {
        gap: 1rem;
        margin-bottom: 40px;
    }
    
    .before-card img, .after-card img {
        height: 400px;
    }
    
    .before-detail, .after-detail {
        font-size: 0.75rem;
        padding: 40px 15px 15px;
    }
}

/* PROJECT OVERVIEW */
.project-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.overview-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #373755;
    margin-bottom: 1rem;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.7px;
}

.overview-content p {
    color: #64748b;
    font-family: 'Bai Jamjuree', sans-serif;
    line-height: 1.45;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f9);
    border-radius: 16px;
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f39c12;
    font-family: 'Rajdhani', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

/* PROJECT OVERVIEW MOBILE */
@media (max-width: 992px) {
    .project-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .project-overview {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .overview-content h2 {
        font-size: 1.3rem;
    }
    
    .overview-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
}

/* PROJECT PROCESS */
.project-process {
    margin-bottom: 60px;
}

.project-process h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 2rem;
    font-family: 'Gabarito', sans-serif;
    text-align: center;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: 1.5rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.1);
    border-left: 3px solid #f39c12;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f39c12;
    font-family: 'Rajdhani', sans-serif;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 0.5rem;
    font-family: 'Gabarito', sans-serif;
}

.step-content p {
    color: #64748b;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-icon i {
    font-size: 1.8rem;
    color: #f39c12;
}

/* PROJECT PROCESS MOBILE */
@media (max-width: 992px) {
    .process-step {
        grid-template-columns: 50px 1fr 40px;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .project-process {
        margin-bottom: 40px;
    }
    
    .project-process h2 {
        font-size: 1.4rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .step-icon {
        text-align: center;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
}

/* MATERIALS USED */
.project-materials {
    margin-bottom: 60px;
}

.project-materials h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 2rem;
    font-family: 'Gabarito', sans-serif;
    text-align: center;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.material-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.material-item:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
}

.material-item i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.material-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 0.5rem;
    font-family: 'Gabarito', sans-serif;
}

.material-item p {
    font-size: 0.86rem;
    color: #64748b;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
}

/* MATERIALS USED MOBILE */
@media (max-width: 992px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .project-materials {
        margin-bottom: 40px;
    }
    
    .project-materials h2 {
        font-size: 1.4rem;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .material-item {
        padding: 1rem;
    }
}

/* PROJECT GALLERY */
.project-gallery {
    margin-bottom: 60px;
}

.project-gallery h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 2rem;
    font-family: 'Gabarito', sans-serif;
    text-align: center;
    letter-spacing: -0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 40px 10px 10px;
    font-size: 0.7rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* PROJECT GALLERY MOBILE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .project-gallery {
        margin-bottom: 40px;
    }
    
    .project-gallery h2 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item img {
        height: 400px;
    }
}

/* TESTIMONIAL SECTION */
.project-testimonial {
    background: linear-gradient(135deg, #0a192f, #0d2240);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.project-testimonial i {
    font-size: 2.5rem;
    color: #f39c12;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.project-testimonial p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Bai Jamjuree', sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.client-info {
    text-align: center;
}

.client-info strong {
    display: block;
    color: #f39c12;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.client-info span {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.8rem;
}

/* TESTIMONIAL SECTION MOBILE */
@media (max-width: 576px) {
    .project-testimonial {
        padding: 1.5rem;
        margin-bottom: 40px;
    }
    
    .project-testimonial p {
        font-size: 0.9rem;
    }
}

/* PROJECT CTA */
.project-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 0.8rem;
    font-family: 'Gabarito', sans-serif;
}

.project-cta p {
    color: #64748b;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 1.5rem;
}

.project-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.project-cta-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    transform: translateY(-2px);
    gap: 15px;
}

/* PROJECT CTA MOBILE */
@media (max-width: 576px) {
    .project-cta {
        padding: 1.5rem;
    }
    
    .project-cta h3 {
        font-size: 1.2rem;
    }
    
    .project-cta p {
        font-size: 0.85rem;
    }
    
    .project-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.show {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #f39c12;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

/* LIGHTBOX MODAL MOBILE */
@media (max-width: 576px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        font-size: 0.7rem;
        bottom: 10px;
    }
}



/* PROJECTS CTA SECTION */
.cta-section-projects {
    background: linear-gradient(135deg, #0a192f 0%, #0d2240 60%, #0f2b50 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* CTA SECTION BACKGROUND PATTERN */
.cta-section-projects::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section-projects::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container-projects {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title-projects {
    color: #d9dcea !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.5px;
}

.cta-text-projects {
    color: rgba(203, 203, 211, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button-projects {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    flex: 1;
    max-width: 250px;
}

.cta-button-projects:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.cta-button-projects i {
    transition: transform 0.3s ease;
}

.cta-button-projects:hover i {
    transform: translateX(5px);
}

/* PROJECTS CTA SECTION MOBILE */
@media (max-width: 768px) {
    .cta-section-projects {
        padding: 2rem 1.5rem;
    }
    
    .cta-title-projects {
        font-size: 1.5rem;
    }
    
    .cta-text-projects {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons-wrapper {
        gap: 0.8rem;
    }
    
    .cta-button-projects {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        max-width: 200px;
    }
}

@media (max-width: 550px) {
    .cta-section-projects {
        padding: 2rem 1rem;
    }
    
    .cta-buttons-wrapper {
        flex-direction: row;
        gap: 0.6rem;
    }
    
    .cta-button-projects {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 0.7rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 400px) {
    .cta-button-projects {
        font-size: 0.7rem;
        padding: 0.6rem 0.3rem;
        gap: 0.3rem;
    }
    
    .cta-button-projects i {
        font-size: 0.7rem;
    }
}




/* =================PROJECT COMING SOON========= */


.project-coming {
    min-height: auto;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/cwdry.png') center center/cover no-repeat;
    background-attachment: fixed;
    margin-top: -20px;
}

/* DARK OVERLAY - FIXED */
.project-coming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.45);
    z-index: 0;
}

.project-coming > * {
    position: relative;
    z-index: 1;
}

.project-coming-container {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

/* GLASS CARD */
.project-coming-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 30px 35px;
    text-align: center;
    border: 1px solid rgba(243, 156, 18, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-coming-glass:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 156, 18, 0.5);
}

/* BADGE */
.project-coming-badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

/* TITLE */
.project-coming-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-family: 'Gabarito', sans-serif;
    letter-spacing: -0.7px;
}

.project-coming-title .highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Gabarito', sans-serif;
}

/* DESCRIPTION */
.project-coming-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 1.2rem;
}

/* DIVIDER */
.project-coming-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.project-coming-divider span {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.5), transparent);
}

.project-coming-divider i {
    color: #f39c12;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* FORM WRAPPER */
.project-coming-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(243, 156, 18, 0.15);
}

.project-coming-form-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Gabarito', sans-serif;
}

.project-coming-form-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: 'Bai Jamjuree', sans-serif;
    margin-bottom: 1rem;
}

/* FORM */
.project-coming-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.project-coming-form input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    transition: all 0.3s ease;
}

.project-coming-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.project-coming-form input:focus {
    outline: none;
    border-color: #f39c12;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.project-coming-form button {
    width: 100%;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    border-radius: 10px;
    color: #0a192f;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.project-coming-form button:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.form-note {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    margin-top: 0.6rem;
}

/* BACK LINK */
.project-coming-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f39c12;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-coming-back:hover {
    gap: 0.8rem;
    color: #e67e22;
}

/* MOBILE */
@media (max-width: 576px) {
    .project-coming {
        padding: 40px 15px;
        background-attachment: scroll;
    }
    
    .project-coming-glass {
        padding: 25px 20px;
    }
    
    .project-coming-title {
        font-size: 1.3rem;
    }
    
    .project-coming-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .project-coming-form-wrapper {
        padding: 1rem;
    }
    
    .project-coming-form-wrapper h3 {
        font-size: 1rem;
    }
}



/* SUCCESS MODAL */

/* SUCCESS MODAL CSS */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

.custom-modal-overlay.fade-out {
    animation: modalFadeOut 0.3s ease forwards;
}

.custom-modal {
    background: linear-gradient(135deg, #0a192f, #0d2240);
    border-radius: 24px;
    padding: 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(243, 156, 18, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

.custom-modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.custom-modal-icon.success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.custom-modal-icon.success i {
    color: #2ecc71;
    font-size: 2rem;
}

.custom-modal-icon.error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.custom-modal-icon.error i {
    color: #e74c3c;
    font-size: 2rem;
}

.custom-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
}

.custom-modal-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.custom-modal-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a192f;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.custom-modal-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}