/* ==================== INVEST IN FUJAIRAH SECTION ==================== */
.invest-section {
    background-color: fffe4;
    padding: 80px 0;
}

/* Relationship Block */
.relationship-block {
    margin-bottom: 4rem;
}

/* Role Grid */
.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.role-card {
    background: #4c5044;
    padding: 2rem 1.8rem;
    border-radius: 0px;
    border: 1px solid #e5e3dc;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: rgb(255, 255, 255);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.role-card h5 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.role-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
}

/* Partnership Standards */
.partnership-standards {
    background: #4c5044;
    padding: 3rem 2rem;
    border-radius: 0px;
    border: 1px solid #e8e6df;
}

.partnership-standards h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.6rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.partnership-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #ffffff;
    max-width: 780px;
    margin: 0 auto 1.2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .invest-section {
        padding: 60px 0;
    }
    
    .relationship-title,
    .partnership-standards h2 {
        font-size: 2.1rem;
    }
    
    .role-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    
    .role-card {
        padding: 1.6rem;
    }
}

/* ====================== HEXAGON GRID ====================== */
.hexagon-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: transparent; /* Light cream background */
}

.hex-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hex-row.bottom {
    margin-top: -85px; /* Staggered effect */
}

/* Hex Card Styling */
.hex-card {
    width: 320px;
    height: 360px;
    background: #fffcf6;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12),
                0 8px 15px rgba(0, 0, 0, 0.08);
    border: 0px solid transparent;
    background-clip: padding-box;
}

.hex-card.center {
    width: 340px;
    height: 380px;
    padding: 2.4rem 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18),
                0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Content inside card */
.hex-card h3 {
    font-size: 1.35rem;
    margin: 1.2rem 0 0.8rem;
    color: #1A1C1E;
}

.hex-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: #3F4247;
    flex-grow: 1;
}

/* Hover Effect */
.hex-card:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.2);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
    .hex-row {
        gap: 25px;
    }
    
    .hex-card {
        width: 290px;
        height: 340px;
    }
    
    .hex-card.center {
        width: 310px;
        height: 360px;
    }
    
    .hex-row.bottom {
        margin-top: -70px;
    }
}

@media (max-width: 768px) {
    .hexagon-grid {
        padding: 50px 15px;
        gap: 35px;
    }
    
    .hex-row {
        flex-wrap: wrap;
        gap: 35px;
        justify-content: center;
    }
    
    .hex-row.bottom {
        margin-top: 0;           /* Remove stagger on mobile */
    }
    
    .hex-card {
        width: 280px;
        height: 320px;
        padding: 1.8rem 1.5rem;
    }
    
    .hex-card.center {
        width: 290px;
        height: 340px;
    }
    
    .hex-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hexagon-grid {
        padding: 40px 10px;
    }
    
    .hex-row {
        gap: 25px;
    }
    
    .hex-card {
        width: 100%;
        max-width: 260px;
        height: 310px;
        padding: 1.6rem 1.4rem;
    }
    
    .hex-card.center {
        width: 100%;
        max-width: 270px;
        height: 325px;
    }
    
    .hex-card h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.6rem;
    }
    
    .hex-card p {
        font-size: 0.95rem;
    }
}
