/* === PROJECTS PAGE SPECIFIC STYLES === */

/* Projects Hero Section */
.projects-hero-section {
    position: relative;
    background: #fff;
    padding: 0;
}

.projects-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 160px 80px 160px;
}

.projects-hero-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.projects-hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.projects-hero-title .title-dark {
    color: #617F5B;
}

.projects-hero-title .title-light {
    color: #D8D8D8;
}

.projects-hero-image {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
}

.projects-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.projects-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 1120px;
    height: 48px;
}

.projects-hero-description {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.btn-consult-with-us {
    padding: 12px 28px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    white-space: nowrap;
}

.btn-consult-with-us:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

/* Thoughtfully Designed Section */
.thoughtfully-designed-section {
    background: #617F5B;
    padding: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 382px;
}

.thoughtfully-container {
    padding-top: 96px;
    padding-right: 160px;
    padding-bottom: 96px;
    padding-left: 160px;
    height: 100%;
}

.thoughtfully-content {
    display: flex;
    gap: 96px;
    align-items: flex-start;
}

.thoughtfully-title {
    flex-shrink: 0;
    width: 320px;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.thoughtfully-title .bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.thoughtfully-description {
    flex: 1;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #fff;
    margin: 0;
}

/* Featured Projects Section */
.featured-projects-section {
    background: #fff;
    padding: 96px 0;
}

.featured-projects-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.featured-projects-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #617F5B;
    margin: 0 0 48px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-projects-title .bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.project-card {
    width: 1120px;
    height: 1444px;
    padding: 48px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-name {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

.project-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.project-main-image {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-detail-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-image {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.project-info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-column-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    padding: 12px 16px;
    background: #F5F5F5;
    border-radius: 8px;
}

/* Other Projects Section */
.other-projects-section {
    background: #fff;
    padding: 96px 0;
}

.other-projects-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
}

.other-projects-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    color: #617F5B;
    margin: 0 0 48px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.other-projects-title .bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #617F5B;
    border-radius: 50%;
    flex-shrink: 0;
}

.other-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1120px;
}

.other-project-card {
    width: 536px;
    height: 563px;
    padding: 24px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.other-project-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.other-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.other-project-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.other-project-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin: 0;
}

.other-project-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.detail-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.other-project-card .btn-see-details {
    margin-top: auto;
    padding: 10px 24px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    align-self: flex-start;
}

.other-project-card .btn-see-details:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .projects-hero-container {
        padding: 80px 40px 60px;
    }

    .projects-hero-title {
        font-size: 48px;
    }

    .projects-hero-image {
        height: 400px;
    }

    .projects-hero-bottom {
        flex-direction: column;
        gap: 24px;
        width: auto;
        height: auto;
        align-items: flex-start;
    }

    .projects-hero-description {
        max-width: 100%;
    }

    .thoughtfully-designed-section {
        height: auto;
    }

    .thoughtfully-container {
        padding-top: 60px;
        padding-right: 40px;
        padding-bottom: 60px;
        padding-left: 40px;
        height: auto;
    }

    .thoughtfully-content {
        flex-direction: column;
        gap: 32px;
    }

    .thoughtfully-title {
        width: auto;
    }

    .thoughtfully-description {
        font-size: 18px;
    }

    .featured-projects-container {
        padding: 0 40px;
    }

    .featured-projects-title {
        margin-bottom: 32px;
    }

    .project-card {
        width: 100%;
        height: auto;
        padding: 32px;
        gap: 20px;
    }

    .project-name {
        font-size: 28px;
    }

    .project-main-image {
        height: 400px;
    }

    .detail-image {
        height: 200px;
    }

    .project-info-grid {
        gap: 32px;
    }

    .other-projects-container {
        padding: 0 40px;
    }

    .other-projects-section {
        padding: 60px 0;
    }

    .other-projects-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .other-project-card {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .other-project-image {
        height: 240px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .projects-hero-container {
        padding: 80px 20px 40px;
    }

    .projects-hero-content {
        gap: 32px;
    }

    .projects-hero-title {
        font-size: 36px;
    }

    .projects-hero-image {
        height: 300px;
        border-radius: 16px;
    }

    .projects-hero-bottom {
        gap: 20px;
        width: auto;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-hero-description {
        font-size: 14px;
    }

    .btn-consult-with-us {
        width: 100%;
    }

    .thoughtfully-container {
        padding-top: 40px;
        padding-right: 20px;
        padding-bottom: 40px;
        padding-left: 20px;
    }

    .thoughtfully-content {
        gap: 24px;
    }

    .thoughtfully-title {
        font-size: 20px;
    }

    .thoughtfully-description {
        font-size: 14px;
    }

    .featured-projects-section {
        padding: 40px 0;
    }

    .featured-projects-container {
        padding: 0 20px;
    }

    .featured-projects-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .project-card {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 24px;
        gap: 16px;
    }

    .project-name {
        font-size: 24px;
    }

    .project-intro {
        font-size: 14px;
    }

    .project-main-image {
        height: 300px;
        border-radius: 16px;
    }

    .project-detail-images {
        gap: 16px;
    }

    .detail-image {
        height: 180px;
    }

    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-column-title {
        font-size: 14px;
    }

    .info-list {
        gap: 8px;
    }

    .info-list li {
        font-size: 13px;
        padding: 10px 12px;
    }

    .other-projects-container {
        padding: 0 20px;
    }

    .other-projects-section {
        padding: 40px 0;
    }

    .other-projects-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .other-project-card {
        padding: 16px;
        border-radius: 16px;
    }

    .other-project-image {
        height: 200px;
    }

    .other-project-name {
        font-size: 18px;
    }

    .detail-label,
    .detail-item {
        font-size: 13px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .projects-hero-container {
        padding: 60px 16px 30px;
    }

    .projects-hero-content {
        gap: 28px;
    }

    .projects-hero-title {
        font-size: 28px;
    }

    .projects-hero-image {
        height: 250px;
    }

    .projects-hero-bottom {
        width: 100%;
    }

    .projects-hero-description {
        font-size: 13px;
    }

    .btn-consult-with-us {
        padding: 10px 20px;
        font-size: 13px;
    }

    .thoughtfully-container {
        padding-top: 32px;
        padding-right: 16px;
        padding-bottom: 32px;
        padding-left: 16px;
    }

    .thoughtfully-content {
        gap: 20px;
    }

    .thoughtfully-title {
        font-size: 18px;
    }

    .thoughtfully-description {
        font-size: 13px;
    }

    .featured-projects-section {
        padding: 32px 0;
    }

    .featured-projects-container {
        padding: 0 16px;
    }

    .featured-projects-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .project-card {
        padding: 20px;
        border-radius: 20px;
        gap: 14px;
    }

    .project-name {
        font-size: 20px;
    }

    .project-intro {
        font-size: 13px;
    }

    .project-main-image {
        height: 250px;
    }

    .detail-image {
        height: 150px;
    }

    .project-info-grid {
        gap: 20px;
    }

    .info-column-title {
        font-size: 13px;
    }

    .info-list li {
        font-size: 12px;
        padding: 8px 10px;
    }

    .other-projects-container {
        padding: 0 16px;
    }

    .other-projects-section {
        padding: 32px 0;
    }

    .other-projects-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .other-project-card {
        padding: 16px;
    }

    .other-project-image {
        height: 180px;
    }

    .other-project-name {
        font-size: 16px;
    }

    .detail-label,
    .detail-item {
        font-size: 12px;
    }
}
