.our-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.apartment-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
    color: #674c1d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.apartment-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #674c1d, #d4af37, #674c1d);
    border-radius: 3px;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.story-item.reverse {
    flex-direction: row-reverse;
}

.story-story-image {
    flex: 1;
    max-width: 500px;
    max-height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.story-story-image img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Overlay untuk gambar */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(103, 76, 29, 0.7);
    opacity: 0;
    z-index: 2;
    border-radius: 20px;
}

.story-story-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2.5rem;
}

.story-story-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 71px 17px 70px 17px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.story-story-content h2 {
    margin-bottom: 1rem;
    color: #674c1d;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.story-story-content h3 {
    color: #674c1d;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.story-story-content h3 span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
    margin-top: 0.3rem;
}

.story-story-content p {
    margin-bottom: 1rem;
    color: #674c1d;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .story-story-image {
        max-width: 100%;
        max-height: 350px;
    }

    .story-story-image img {
        width: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .story-story-image {
        max-height: 200px;
    }

    .story-story-image img {
        height: 200px;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .story-item {
        flex-direction: column;
        gap: 1rem;
    }

    .story-item.reverse {
        flex-direction: column;
    }

    .story-content {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .our-story {
        padding: 1rem;
    }

    .story-content {
        padding: 1rem;
    }
    
    .apartment-title {
        font-size: 2rem;
    }
}

/* HISTORY SECTION - REDESIGN MODERN & INTERAKTIF */
.history-section {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    background: linear-gradient(135deg, #674c1d 0%, #8b6929 100%);
    border-radius: 40px;
    padding: 3.5rem;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../assets/images/our-story/Pattern.svg") repeat;
    background-size: 80px 80px;
    opacity: 0.07;
    z-index: 1;
}

.history-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 1.3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.history-title {
    font-family: 'EB Garamond', serif;
    font-size: 3.2rem;
    background: linear-gradient(135deg, #674c1d 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.history-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
}

.history-content p {
    color: #674c1d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.2rem;
    opacity: 0.92;
    transition: all 0.3s ease;
}

.history-content p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.history-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

.history-images {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.history-logo, .history-room, .history-building {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-logo {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    padding: 1rem;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.history-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-room {
    width: 320px;
    height: 320px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.history-building {
    width: 320px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.history-room img, .history-building img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-room::after, .history-building::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 75%,
        rgba(103, 76, 29, 0.1) 100%
    );
    z-index: 1;
}

.history-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.history-room:hover, .history-building:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.history-room:hover img, .history-building:hover img {
    transform: scale(1.08);
}

.history-images::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 1100px) {
    .history-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .history-content {
        padding: 2rem;
    }
    
    .history-title {
        font-size: 2.5rem;
    }
    
    .history-content p {
        font-size: 1rem;
    }
    
    .history-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .history-logo {
        width: 160px;
        height: 160px;
    }
    
    .history-room, .history-building {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 1.5rem;
        border-radius: 25px;
    }
    
    .history-content {
        padding: 1.5rem;
    }
    
    .history-title {
        font-size: 2rem;
    }
    
    .history-content p {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
    
    .history-images {
        gap: 1rem;
        padding: 0.3rem;
    }
    
    .history-logo {
        width: 140px;
        height: 140px;
        padding: 1rem;
    }
    
    .history-room, .history-building {
        width: 240px;
        height: 160px;
    }
}

/* FOUNDER SECTION - PERBAHARUI FOTO & CARD */
.founder-section {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    min-height: 370px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    background: #3d2a1a;
}

.founder-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.founder-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 50%;
    filter: brightness(0.45) blur(0.5px);
}

.founder-section > *:not(.founder-bg) {
    position: relative;
    z-index: 2;
}

.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.2rem 2.5rem 2.5rem;
    gap: 1.2rem;
}

.founder-photo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-photo img {
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 143px 200px 73px 157px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    background: #fff;
    background-color: #6b4a23;
}

.founder-card.overlap {
    position: absolute;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    width: 85%;
    min-width: 180px;
    max-width: 440px;
    background: rgba(80, 54, 27, 0.92);
    color: #fff3d6;
    border-radius: 14px;
    padding: 0.85rem 1.2rem 0.7rem 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    z-index: 3;
}
.founder-card.overlap .founder-name {
    font-weight: 700;
    color: #fff3d6;
    margin-bottom: 0.1rem;
    font-size: 1.08rem;
    display: block;
}
.founder-card.overlap .founder-role {
    color: #e0c9a6;
    font-weight: 400;
    font-size: 0.98rem;
    display: block;
}

.founder-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 1.2rem;
}
.founder-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.7rem;
    color: #fff3d6;
    font-weight: bold;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.founder-desc {
    color: #fff3d6;
    font-family: 'Poppins', serif;
    font-size: 1.08rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.founder-desc p {
    margin-bottom: 1.1rem;
}

@media (max-width: 1100px) {
    .founder-section {
        grid-template-columns: 1fr;
        min-height: 420px;
    }
    .founder-left, .founder-right {
        padding: 1.5rem 1rem;
    }
    .founder-photo img {
        width: 180px;
        height: 240px;
    }
    .founder-card.overlap {
        min-width: 120px;
        max-width: 220px;
        font-size: 0.95rem;
        padding: 0.7rem 0.7rem;
    }
    .founder-title {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .founder-section {
        grid-template-columns: 1fr;
        min-height: unset;
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    .founder-left, .founder-right {
        padding: 1rem;
        align-items: center;
        text-align: center;
    }
    .founder-photo {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .founder-photo img {
        width: 180px;
        height: 220px;
        border-radius: 30px;
        margin-bottom: 0;
    }
    .founder-card.overlap {
        position: static !important;
        left: unset !important;
        bottom: unset !important;
        transform: none !important;
        min-width: 0;
        max-width: 120px;
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
        margin-left: 8px;
        margin-bottom: 0;
        margin-top: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.13);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .founder-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .founder-desc {
        font-size: 0.95rem;
    }
}

.organization-section {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 2.5rem 1rem 3.5rem 1rem;
    background: linear-gradient(120deg, #fffbe6 60%, #f7f3ea 100%);
    border-radius: 36px 12px 36px 12px;
    box-shadow: 0 8px 36px rgba(103, 76, 29, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.organization-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #674c1d;
    margin-bottom: 2.2rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}
.organization-title::after {
    content: '';
    display: block;
    margin: 0.7rem auto 0 auto;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #674c1d 80%);
    border-radius: 2px;
}
.organization-img-wrapper {
    width: 100%;
    max-width: 900px;
    background: #674c1d;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(103, 76, 29, 0.10);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}
.organization-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    border-radius: 18px;
}
@media (max-width: 1100px) {
    .organization-img-wrapper {
        max-width: 100vw;
        padding: 1.2rem 0.2rem;
    }
    .organization-img {
        max-width: 98vw;
    }
    .organization-section {
        padding: 1.5rem 0.2rem 2.5rem 0.2rem;
    }
    .organization-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .organization-title {
        font-size: 1.1rem;
    }
    .organization-img-wrapper {
        padding: 0.5rem 0.1rem;
    }
    .organization-img {
        max-width: 99vw;
    }
    .organization-section {
        padding: 0.7rem 0.1rem 1.2rem 0.1rem;
    }
}